diff options
author | Dracony <draconyster@gmail.com> | 2012-12-29 16:07:45 +0200 |
---|---|---|
committer | Dracony <draconyster@gmail.com> | 2012-12-29 16:07:45 +0200 |
commit | 18d4804cb892ab278ab572a6099395d4bde8d646 (patch) | |
tree | da4bc4a4e7fc713a99484ae9842c93f614513ea7 /modules/database/classes/driver/mysql/query.php | |
parent | db5bd4e2a84cfbbd662a7dbd9c6fc93edfb376d1 (diff) | |
download | PHPixie-18d4804cb892ab278ab572a6099395d4bde8d646.zip PHPixie-18d4804cb892ab278ab572a6099395d4bde8d646.tar.gz PHPixie-18d4804cb892ab278ab572a6099395d4bde8d646.tar.bz2 |
Spell checked code documentation
Diffstat (limited to 'modules/database/classes/driver/mysql/query.php')
-rw-r--r-- | modules/database/classes/driver/mysql/query.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/database/classes/driver/mysql/query.php b/modules/database/classes/driver/mysql/query.php index 9f38cc5..f800b20 100644 --- a/modules/database/classes/driver/mysql/query.php +++ b/modules/database/classes/driver/mysql/query.php @@ -7,7 +7,7 @@ class Query_Mysql_Driver extends Query_Database{ /** * If a string is passed escapes a field by enclosing it in `` quotes. - * If you pass an Expression_Database object the value will be inserted into the query uneascaped + * If you pass an Expression_Database object the value will be inserted into the query unescaped * * @param mixed $field Field to be escaped or an Expression_Database object * if the field must not be escaped @@ -29,7 +29,7 @@ class Query_Mysql_Driver extends Query_Database{ /** * Replaces the value with ? and appends it to the parameters array - * If you pass an Expression_Database object the value will be inserted into the query uneascaped + * If you pass an Expression_Database object the value will be inserted into the query unescaped * @param mixed $val Value to be escaped or an Expression_Database object * if the value must not be escaped * @param array &$params Reference to parameters array @@ -156,7 +156,7 @@ class Query_Mysql_Driver extends Query_Database{ /** * Recursively parses conditions array into a query string * - * @param array $p Element of the array of conditions + * @param array $p Element of the cobditions array * @param array &$params Reference to parameters array * @param boolean $skip_first_operator Flag to skip the first logical operator in a query * to prevent AND or OR to be at the beginning of the query |