aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-04 21:02:57 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-04 21:02:57 -0500
commitf8dbe4c7cc9d2109781c7283bd0d8617db6f2c09 (patch)
treeaafe9e99a12350db77bfa9466fcfb615092f8a8b /activesupport
parente946c5853b99607cc5fe92225c473a51ecc44e99 (diff)
downloadrails-f8dbe4c7cc9d2109781c7283bd0d8617db6f2c09.tar.gz
rails-f8dbe4c7cc9d2109781c7283bd0d8617db6f2c09.tar.bz2
rails-f8dbe4c7cc9d2109781c7283bd0d8617db6f2c09.zip
fix Array#uniq_by! docs [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/array/uniq_by.rb4
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)