summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-10-25 13:45:05 +0100
committerJamie Matthews <[email protected]>2010-10-25 13:45:05 +0100
commit2a4ed42e4642ff21434c64bb5082406c4e3d516c (patch)
treedbca9d4ce27525d35c263e7011ef1ce5ac627af1 /README.markdown
parenta51c6886f04d7fec8563f3ffad70b97e3c5b1aed (diff)
Typo in README
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 4707aba..7dc02eb 100644
--- a/README.markdown
+++ b/README.markdown
@@ -183,7 +183,7 @@ Will result in the query:
SELECT * FROM `person`;
-The `select` and method gives you control over which columns are returned. Call `select` multiple times to specify columns to return.
+The `select` method gives you control over which columns are returned. Call `select` multiple times to specify columns to return.
$people = ORM::for_table('person')->select('name')->select('age')->find_many();