aboutsummaryrefslogtreecommitdiffstats
path: root/README.markdown
diff options
context:
space:
mode:
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