Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
calvintam236 committed Jul 24, 2015
1 parent ab494d5 commit 55bc505
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion system/core/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ public function fetch_method()
* Set directory name
*
* @param string $dir Directory name
* @param bool $appent Whether we're appending rather than setting the full value
* @param bool $append Whether we're appending rather than setting the full value
* @return void
*/
public function set_directory($dir, $append = FALSE)
Expand Down
2 changes: 1 addition & 1 deletion system/database/DB_forge.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ abstract class CI_DB_forge {
protected $_unsigned = TRUE;

/**
* NULL value representatin in CREATE/ALTER TABLE statements
* NULL value representation in CREATE/ALTER TABLE statements
*
* @var string
*/
Expand Down
2 changes: 1 addition & 1 deletion system/database/DB_query_builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ public function set($key, $value = '', $escape = NULL)
* Compiles a SELECT query string and returns the sql.
*
* @param string the table name to select from (optional)
* @param bool TRUE: resets QB values; FALSE: leave QB vaules alone
* @param bool TRUE: resets QB values; FALSE: leave QB values alone
* @return string
*/
public function get_compiled_select($table = '', $reset = TRUE)
Expand Down
2 changes: 1 addition & 1 deletion system/helpers/file_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
/**
* Read File
*
* Opens the file specfied in the path and returns it as a string.
* Opens the file specified in the path and returns it as a string.
*
* @todo Remove in version 3.1+.
* @deprecated 3.0.0 It is now just an alias for PHP's native file_get_contents().
Expand Down
2 changes: 1 addition & 1 deletion system/helpers/text_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function entities_to_ascii($str, $all = TRUE)
* word you've submitted.
*
* @param string the text string
* @param string the array of censoered words
* @param string the array of censored words
* @param string the optional replacement value
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Encrypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class CI_Encrypt {
protected $_hash_type = 'sha1';

/**
* Flag for the existance of mcrypt
* Flag for the existence of mcrypt
*
* @var bool
*/
Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Ftp.php
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ public function delete_file($filepath)

/**
* Delete a folder and recursively delete everything (including sub-folders)
* containted within it.
* contained within it.
*
* @param string $filepath
* @return bool
Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Javascript/Jquery.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class CI_Jquery extends CI_Javascript {
public $jquery_table_sorter_active = FALSE;

/**
* JQuery table sorder pager active
* JQuery table sorter pager active
*
* @var bool
*/
Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ public function flashdata($key = NULL)
/**
* Set flashdata
*
* Legacy CI_Session compatibiliy method
* Legacy CI_Session compatibility method
*
* @param mixed $data Session data key or an associative array
* @param mixed $value Value to store
Expand Down

0 comments on commit 55bc505

Please sign in to comment.