summaryrefslogtreecommitdiff
path: root/includes/database/mysql/query.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-12-20 18:24:41 +0000
committerDries Buytaert <dries@buytaert.net>2008-12-20 18:24:41 +0000
commit0c63d9e24fcaef1f3cb09823d5765e7fb48bc89e (patch)
tree17978ad881e137708ceed1f29b170360df014155 /includes/database/mysql/query.inc
parentee700371aca60269b9c752d1e143cae64d18a745 (diff)
downloadbrdo-0c63d9e24fcaef1f3cb09823d5765e7fb48bc89e.tar.gz
brdo-0c63d9e24fcaef1f3cb09823d5765e7fb48bc89e.tar.bz2
- Patch #349504 by keith.smith: clean up sentence spacing in code comments.
Diffstat (limited to 'includes/database/mysql/query.inc')
-rw-r--r--includes/database/mysql/query.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/database/mysql/query.inc b/includes/database/mysql/query.inc
index f468e486c..d48681316 100644
--- a/includes/database/mysql/query.inc
+++ b/includes/database/mysql/query.inc
@@ -66,7 +66,7 @@ class InsertQuery_mysql extends InsertQuery {
}
}
else {
- // If there are no values, then this is a default-only query. We still need to handle that.
+ // If there are no values, then this is a default-only query. We still need to handle that.
$placeholders = array_fill(0, count($this->defaultFields), 'default');
$values[] = '(' . implode(', ', $placeholders) .')';
}
@@ -95,7 +95,7 @@ class MergeQuery_mysql extends MergeQuery {
$max_placeholder = 0;
$values = array();
- // We assume that the order here is the same as in __toString(). If that's
+ // We assume that the order here is the same as in __toString(). If that's
// not the case, then we have serious problems.
foreach ($insert_fields as $value) {
$values[':db_insert_placeholder_' . $max_placeholder++] = $value;