summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorfridde <[email protected]>2013-09-01 00:24:23 +0200
committerfridde <[email protected]>2013-09-01 00:24:23 +0200
commitf90a58ad8c48d66bfa046ca3b84d93fd66afe0d1 (patch)
treea666f040f9f167171363f43c48260dc7a53159a7 /docs
parent01112f5ac14b24aed8038cc0ae99801007ef26b8 (diff)
Minor confusion
Diffstat (limited to 'docs')
-rw-r--r--docs/querying.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/querying.rst b/docs/querying.rst
index 1e5afd3..e93994b 100644
--- a/docs/querying.rst
+++ b/docs/querying.rst
@@ -126,7 +126,7 @@ over it just like an array.
<?php
foreach(ORM::for_table('person')->find_result_set() as $record) {
- echo $person->name;
+ echo $record->name;
}
.. code-block:: php