aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Kurian <JaKXz@users.noreply.github.com>2017-02-22 18:51:13 -0500
committerGitHub <noreply@github.com>2017-02-22 18:51:13 -0500
commit59e0d5fcb73bffbf4de2262d7629cf4f8e580eda (patch)
tree60f66f933e68d1d56a3613189073b13f4b49b6df
parent5a5170a8d2a1444ace4d7d4346516a84b4fd4ef9 (diff)
downloadrails-59e0d5fcb73bffbf4de2262d7629cf4f8e580eda.tar.gz
rails-59e0d5fcb73bffbf4de2262d7629cf4f8e580eda.tar.bz2
rails-59e0d5fcb73bffbf4de2262d7629cf4f8e580eda.zip
docs(distinct): tweaks [skip ci]
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b2a5863754..af768361ab 100644
--- a/README.md
+++ b/README.md
@@ -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)