aboutsummaryrefslogtreecommitdiffstats
path: root/README.markdown
diff options
context:
space:
mode:
authorAaron Ackerman <theron17@gmail.com>2014-01-02 20:36:36 -0600
committerAaron Ackerman <theron17@gmail.com>2014-01-02 20:36:36 -0600
commit08d85a9ec47338d1e34e6b17129c3fdbea9e2750 (patch)
treea28b9bfb4a7627019db4adc063c2b868e9364860 /README.markdown
parent5a8b4b462f2e1c55ba492afe1e14e4ed7fcfd40d (diff)
downloadrails-08d85a9ec47338d1e34e6b17129c3fdbea9e2750.tar.gz
rails-08d85a9ec47338d1e34e6b17129c3fdbea9e2750.tar.bz2
rails-08d85a9ec47338d1e34e6b17129c3fdbea9e2750.zip
Remove README inaccuracy, where does not allow multiple arguments
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown6
1 files changed, 0 insertions, 6 deletions
diff --git a/README.markdown b/README.markdown
index c7346d9efd..e2c60bd90e 100644
--- a/README.markdown
+++ b/README.markdown
@@ -87,12 +87,6 @@ All operators are chainable in this way, and they are chainable any number of ti
users.where(users[:name].eq('bob')).where(users[:age].lt(25))
```
-Of course, many of the operators take multiple arguments, so the last example can be written more tersely:
-
-```ruby
-users.where(users[:name].eq('bob'), users[:age].lt(25))
-```
-
The `OR` operator works like this:
```ruby