diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-04-04 21:02:57 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2013-04-04 21:02:57 -0500 |
commit | f8dbe4c7cc9d2109781c7283bd0d8617db6f2c09 (patch) | |
tree | aafe9e99a12350db77bfa9466fcfb615092f8a8b | |
parent | e946c5853b99607cc5fe92225c473a51ecc44e99 (diff) | |
download | rails-f8dbe4c7cc9d2109781c7283bd0d8617db6f2c09.tar.gz rails-f8dbe4c7cc9d2109781c7283bd0d8617db6f2c09.tar.bz2 rails-f8dbe4c7cc9d2109781c7283bd0d8617db6f2c09.zip |
fix Array#uniq_by! docs [ci skip]
-rw-r--r-- | activesupport/lib/active_support/core_ext/array/uniq_by.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/uniq_by.rb b/activesupport/lib/active_support/core_ext/array/uniq_by.rb index ca3b7748cd..23573c97de 100644 --- a/activesupport/lib/active_support/core_ext/array/uniq_by.rb +++ b/activesupport/lib/active_support/core_ext/array/uniq_by.rb @@ -1,5 +1,5 @@ class Array - # *DEPRECATED*: Use +Array#uniq+ instead. + # *DEPRECATED*: Use <tt>Array#uniq</tt> instead. # # Returns a unique array based on the criteria in the block. # @@ -9,7 +9,7 @@ class Array uniq(&block) end - # *DEPRECATED*: Use +Array#uniq!+ instead. + # *DEPRECATED*: Use <tt>Array#uniq!</tt> instead. # # Same as +uniq_by+, but modifies +self+. def uniq_by!(&block) |