aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMatt Bridges <mbridges.91@gmail.com>2012-01-26 08:51:41 -0600
committerMatt Bridges <mbridges.91@gmail.com>2012-01-26 08:51:41 -0600
commitabb1423a8d662cc277a07ebdbf0e31a4849822b6 (patch)
tree8f8efdbbd1067b0d21e25adecfe0cfe89c9cb8d4 /activerecord/CHANGELOG.md
parent9725c0cb341584ee329695f18ef12fcbd831451e (diff)
downloadrails-abb1423a8d662cc277a07ebdbf0e31a4849822b6.tar.gz
rails-abb1423a8d662cc277a07ebdbf0e31a4849822b6.tar.bz2
rails-abb1423a8d662cc277a07ebdbf0e31a4849822b6.zip
Fixed small typo in ActveRecord/CHANGELOG.md
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 11d20814af..85ff3aaf2b 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -208,7 +208,7 @@
Client.select(:name).uniq
- This also allows you to revert the unqueness in a relation:
+ This also allows you to revert the uniqueness in a relation:
Client.select(:name).uniq.uniq(false)