summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2012-07-18 06:29:51 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2012-07-18 06:29:51 -0700
commit72a9987b823c5ef8d41f86e748fcb99cd6615095 (patch)
tree19952c5599b4b7f0813414fadf8df3432d615a50 /includes
parentcad2a2524ecb7e06e25032d0e28f065a40902f9b (diff)
downloadbrdo-72a9987b823c5ef8d41f86e748fcb99cd6615095.tar.gz
brdo-72a9987b823c5ef8d41f86e748fcb99cd6615095.tar.bz2
Issue #1683836 by mjonesdinero, lyricnz: Fix database topic sample code so it is consistent
Diffstat (limited to 'includes')
-rw-r--r--includes/database/database.inc2
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