summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2013-02-20 08:43:18 -0800
committerSimon Holywell <[email protected]>2013-02-20 08:43:18 -0800
commitff655dfab2c5e12afd6a21f7c6f84ace9ba6e722 (patch)
tree8a85c7fcf80d930b89ad38ec4b5f54864a13a784 /docs
parentfa66a543d442893b16045fec1238fdb4745ee36a (diff)
parent85e8bca27a09c815b05f5b54a599255d62df8472 (diff)
Merge pull request #103 from sjparsons/master
Fixed a minor typo in the example of the select_many() function
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: