summaryrefslogtreecommitdiffstats
path: root/modules/database/classes/driver/mysql/query.php
diff options
context:
space:
mode:
authorDracony <draconyster@gmail.com>2012-12-29 16:07:45 +0200
committerDracony <draconyster@gmail.com>2012-12-29 16:07:45 +0200
commit18d4804cb892ab278ab572a6099395d4bde8d646 (patch)
treeda4bc4a4e7fc713a99484ae9842c93f614513ea7 /modules/database/classes/driver/mysql/query.php
parentdb5bd4e2a84cfbbd662a7dbd9c6fc93edfb376d1 (diff)
downloadPHPixie-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.php6
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