Issue #1683836 by mjonesdinero, lyricnz: Fix database topic sample code so it is consistent

8.0.x
Jennifer Hodgdon 2012-07-18 06:26:50 -07:00
parent 4db8a1be61
commit 31099363a4
1 changed files with 1 additions and 1 deletions

View File

@ -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