diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-08-14 17:58:56 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-08-14 17:58:56 -0700 |
commit | e6b9f130a658977e3f9ddce106d321b55af916b7 (patch) | |
tree | 772b4e5bf30eedf140d927096523ec6897fa3cdf | |
parent | a4d4af4083d4b41c348f7e707874aedfa1d8a3cd (diff) | |
parent | cada218f539265c6c44002833dc41b36be7738d3 (diff) | |
download | rails-e6b9f130a658977e3f9ddce106d321b55af916b7.tar.gz rails-e6b9f130a658977e3f9ddce106d321b55af916b7.tar.bz2 rails-e6b9f130a658977e3f9ddce106d321b55af916b7.zip |
Merge pull request #11887 from raysrashmi/typo_fix
Typo Fix[ci skip]
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/filters.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/filters.rb b/activesupport/lib/active_support/core_ext/string/filters.rb index 2e2dd86a8b..49c0df6026 100644 --- a/activesupport/lib/active_support/core_ext/string/filters.rb +++ b/activesupport/lib/active_support/core_ext/string/filters.rb @@ -20,12 +20,12 @@ class String self end - # Returns a new string with all occurances of the pattern removed. Short-hand for String#gsub(pattern, ''). + # Returns a new string with all occurrences of the pattern removed. Short-hand for String#gsub(pattern, ''). def remove(pattern) - gsub pattern, '' + gsub pattern, '' end - # Alters the string by removing all occurances of the pattern. Short-hand for String#gsub!(pattern, ''). + # Alters the string by removing all occurrences of the pattern. Short-hand for String#gsub!(pattern, ''). def remove!(pattern) gsub! pattern, '' end |