diff options
Diffstat (limited to 'includes/database')
-rw-r--r-- | includes/database/database.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc index e1df32720..5bcae67a3 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -41,7 +41,7 @@ * $result = db_query_range('SELECT n.nid, n.title, n.created * FROM {node} n WHERE n.uid = :uid', 0, 10, array(':uid' => $uid)); * foreach ($result as $record) { - * // Perform operations on $node->title, etc. here. + * // Perform operations on $record->title, etc. here. * } * @endcode * Curly braces are used around "node" to provide table prefixing via |