From 0c63d9e24fcaef1f3cb09823d5765e7fb48bc89e Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sat, 20 Dec 2008 18:24:41 +0000 Subject: - Patch #349504 by keith.smith: clean up sentence spacing in code comments. --- includes/database/mysql/query.inc | 4 ++-- includes/database/mysql/schema.inc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/database/mysql') 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; diff --git a/includes/database/mysql/schema.inc b/includes/database/mysql/schema.inc index bbc9a9ca0..3e19f05d0 100644 --- a/includes/database/mysql/schema.inc +++ b/includes/database/mysql/schema.inc @@ -136,7 +136,7 @@ class DatabaseSchema_mysql extends DatabaseSchema { } public function getFieldTypeMap() { - // Put :normal last so it gets preserved by array_flip. This makes + // Put :normal last so it gets preserved by array_flip. This makes // it much easier for modules (such as schema.module) to map // database types back into schema types. static $map = array( -- cgit v1.2.3