summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorsjparsons <[email protected]>2013-02-20 10:06:11 -0600
committersjparsons <[email protected]>2013-02-20 10:06:11 -0600
commit85e8bca27a09c815b05f5b54a599255d62df8472 (patch)
tree8a85c7fcf80d930b89ad38ec4b5f54864a13a784 /docs
parentfa66a543d442893b16045fec1238fdb4745ee36a (diff)
Fix typo in select_many() example
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 41b6485..201d0f3 100644
--- a/docs/querying.rst
+++ b/docs/querying.rst
@@ -455,7 +455,7 @@ key in an associative array):
::
- $people = ORM::for_table('person')->select_many(array('first_name' => 'name', 'age'), 'height')->find_many();
+ $people = ORM::for_table('person')->select_many(array('first_name' => 'name'), 'age', 'height')->find_many();
Will result in the query: