diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-09-30 18:20:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-30 18:20:15 -0400 |
commit | 72f97e281059bc983eef5bc8915e53249c623dff (patch) | |
tree | 3132214b96e5cbf2b06a20bb08ba635e527e4671 | |
parent | dc61db08b6858914ac083e11041b63e57ee04e65 (diff) | |
parent | 7d0e73bc019536970c480d0810347ee2f40b9838 (diff) | |
download | rails-72f97e281059bc983eef5bc8915e53249c623dff.tar.gz rails-72f97e281059bc983eef5bc8915e53249c623dff.tar.bz2 rails-72f97e281059bc983eef5bc8915e53249c623dff.zip |
Merge pull request #26675 from j1wilmot/update-docs
Remove dup distinct from AR query list doc [ci skip]
-rw-r--r-- | guides/source/active_record_querying.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index bbe1b0decc..38b1ffc4c8 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -81,7 +81,6 @@ The methods are: * `reorder` * `reverse_order` * `select` -* `distinct` * `where` Finder methods that return a collection, such as `where` and `group`, return an instance of `ActiveRecord::Relation`. Methods that find a single entity, such as `find` and `first`, return a single instance of the model. |