diff options
author | Jason Kurian <JaKXz@users.noreply.github.com> | 2017-02-22 18:51:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-22 18:51:13 -0500 |
commit | 59e0d5fcb73bffbf4de2262d7629cf4f8e580eda (patch) | |
tree | 60f66f933e68d1d56a3613189073b13f4b49b6df | |
parent | 5a5170a8d2a1444ace4d7d4346516a84b4fd4ef9 (diff) | |
download | rails-59e0d5fcb73bffbf4de2262d7629cf4f8e580eda.tar.gz rails-59e0d5fcb73bffbf4de2262d7629cf4f8e580eda.tar.bz2 rails-59e0d5fcb73bffbf4de2262d7629cf4f8e580eda.zip |
docs(distinct): tweaks [skip ci]
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -150,7 +150,7 @@ The `OR` operator works like this: users.where(users[:name].eq('bob').or(users[:age].lt(25))) ``` -The `AND` operator behaves similarly. Here is an example of the `DISTINCT` operator, which as of v6 is also chainable: +The `AND` operator behaves similarly. Here is an example of the `DISTINCT` operator: ```ruby posts = Arel::Table.new(:posts) |