diff --git a/core/includes/database.inc b/core/includes/database.inc index 216c88e51d8..10d1133f2d7 100644 --- a/core/includes/database.inc +++ b/core/includes/database.inc @@ -44,7 +44,7 @@ use Drupal\Core\Database\Query\Condition; * $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