aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Hodes <jacob@peashutop.com>2010-03-11 10:14:49 +0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-30 04:37:41 +0800
commitcf1db3ce28e6c9fcf6fc724f5467e6b6b450f8bf (patch)
tree18d5e1e787c69cb42b103916cdf1a5c840452577
parentd68165501fc80bbce34c43eaaf48381bcca27c15 (diff)
downloadrails-cf1db3ce28e6c9fcf6fc724f5467e6b6b450f8bf.tar.gz
rails-cf1db3ce28e6c9fcf6fc724f5467e6b6b450f8bf.tar.bz2
rails-cf1db3ce28e6c9fcf6fc724f5467e6b6b450f8bf.zip
tiny correction to readme
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 10d3f0a021..ab05e1245a 100644
--- a/README.markdown
+++ b/README.markdown
@@ -60,7 +60,7 @@ What are called `LIMIT` and `OFFSET` in SQL are called `take` and `skip` in Arel
users.group(users[:name]) # => SELECT * FROM users GROUP BY name
-The best property of the Relational Algebra is its "composability", or closure under all operations. For example, to select AND project, just "chain" the method invocations:
+The best property of the Relational Algebra is its "composability", or closure under all operations. For example, to restrict AND project, just "chain" the method invocations:
users \
.where(users[:name].eq('amy')) \