diff options
-rw-r--r-- | includes/database.mysql.inc | 4 | ||||
-rw-r--r-- | includes/database.mysqli.inc | 4 | ||||
-rw-r--r-- | includes/database.pgsql.inc | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/includes/database.mysql.inc b/includes/database.mysql.inc index f75b0e6ef..db130b5dc 100644 --- a/includes/database.mysql.inc +++ b/includes/database.mysql.inc @@ -180,8 +180,8 @@ function db_fetch_object($result) { * @param $result * A database query result resource, as returned from db_query(). * @return - * An associative array representing the next row of the result, or FALSE. - * The keys of this object are the names of the table fields selected by the + * An associative array representing the next row of the result, or FALSE. + * The keys of this object are the names of the table fields selected by the * query, and the values are the field values for this result row. */ function db_fetch_array($result) { diff --git a/includes/database.mysqli.inc b/includes/database.mysqli.inc index cefeb69cd..883bd72f6 100644 --- a/includes/database.mysqli.inc +++ b/includes/database.mysqli.inc @@ -178,8 +178,8 @@ function db_fetch_object($result) { * @param $result * A database query result resource, as returned from db_query(). * @return - * An associative array representing the next row of the result, or FALSE. - * The keys of this object are the names of the table fields selected by the + * An associative array representing the next row of the result, or FALSE. + * The keys of this object are the names of the table fields selected by the * query, and the values are the field values for this result row. */ function db_fetch_array($result) { diff --git a/includes/database.pgsql.inc b/includes/database.pgsql.inc index ca0603db8..287b322cf 100644 --- a/includes/database.pgsql.inc +++ b/includes/database.pgsql.inc @@ -197,8 +197,8 @@ function db_fetch_object($result) { * @param $result * A database query result resource, as returned from db_query(). * @return - * An associative array representing the next row of the result, or FALSE. - * The keys of this object are the names of the table fields selected by the + * An associative array representing the next row of the result, or FALSE. + * The keys of this object are the names of the table fields selected by the * query, and the values are the field values for this result row. */ function db_fetch_array($result) { |