summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-10-07 12:45:59 +0100
committerJamie Matthews <[email protected]>2010-10-07 12:45:59 +0100
commit03c8c210c117109ea0abc1c326d763fcab0386cf (patch)
treeebd652da261352028316fe415cc5cf1bbabf91f7 /README.markdown
parent919e83f45f0768d99c309609ab3bf494baad24d2 (diff)
Fix unmatched bracket in README example
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 8e197e3..07ff5a2 100644
--- a/README.markdown
+++ b/README.markdown
@@ -136,7 +136,7 @@ To add a `WHERE ... IN ()` or `WHERE ... NOT IN ()` clause, use the `where_in` a
Both methods accept two arguments. The first is the column name to compare against. The second is an *array* of possible values.
- $people = ORM::for_table('person')->where_in('name', array('Fred', 'Joe', 'John')->find_many();
+ $people = ORM::for_table('person')->where_in('name', array('Fred', 'Joe', 'John'))->find_many();
##### Raw WHERE clauses #####