aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-02 18:41:32 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-02 18:41:32 -0800
commit1b084a82cf80625044e6c8c43a6887912e15d32b (patch)
treea28b9bfb4a7627019db4adc063c2b868e9364860
parent5a8b4b462f2e1c55ba492afe1e14e4ed7fcfd40d (diff)
parent08d85a9ec47338d1e34e6b17129c3fdbea9e2750 (diff)
downloadrails-1b084a82cf80625044e6c8c43a6887912e15d32b.tar.gz
rails-1b084a82cf80625044e6c8c43a6887912e15d32b.tar.bz2
rails-1b084a82cf80625044e6c8c43a6887912e15d32b.zip
Merge pull request #229 from aackerman/readme-inaccuracy
Remove README inaccuracy, where does not allow multiple arguments
-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