diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-01-02 18:41:32 -0800 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-01-02 18:41:32 -0800 |
commit | 1b084a82cf80625044e6c8c43a6887912e15d32b (patch) | |
tree | a28b9bfb4a7627019db4adc063c2b868e9364860 /README.markdown | |
parent | 5a8b4b462f2e1c55ba492afe1e14e4ed7fcfd40d (diff) | |
parent | 08d85a9ec47338d1e34e6b17129c3fdbea9e2750 (diff) | |
download | rails-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
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 6 |
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 |