aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-05-26 10:53:05 +0300
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-05-26 10:53:05 +0300
commit4355725cdc9cbe59a58bf7e5adaf923fb1fbf21d (patch)
tree37ff00627102806a97b4252ffd81ff6856c80d80 /activesupport
parentb8c31fd9b94cd8ac2963c252fcca40b29c43e75c (diff)
downloadrails-4355725cdc9cbe59a58bf7e5adaf923fb1fbf21d.tar.gz
rails-4355725cdc9cbe59a58bf7e5adaf923fb1fbf21d.tar.bz2
rails-4355725cdc9cbe59a58bf7e5adaf923fb1fbf21d.zip
Remove redundant 'like' from doc of slice! method [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/multibyte/chars.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb
index 3c0cf9f137..9b3cfd18e2 100644
--- a/activesupport/lib/active_support/multibyte/chars.rb
+++ b/activesupport/lib/active_support/multibyte/chars.rb
@@ -86,7 +86,7 @@ module ActiveSupport #:nodoc:
@wrapped_string.split(*args).map { |i| self.class.new(i) }
end
- # Works like like <tt>String#slice!</tt>, but returns an instance of
+ # Works like <tt>String#slice!</tt>, but returns an instance of
# Chars, or nil if the string was not modified.
def slice!(*args)
chars(@wrapped_string.slice!(*args))