diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-11-30 07:25:00 -0800 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-11-30 07:25:00 -0800 |
commit | 3bc9c35707e1c0b69b7cdffed31dadce2bfc7738 (patch) | |
tree | 8bacec39abb86258391e3eae85c4c10f429ca590 /activesupport | |
parent | 61ad8d5c32422c523293428d25277be1759b597c (diff) | |
parent | e0326f56b41ef4e1d41fd327259873992d894736 (diff) | |
download | rails-3bc9c35707e1c0b69b7cdffed31dadce2bfc7738.tar.gz rails-3bc9c35707e1c0b69b7cdffed31dadce2bfc7738.tar.bz2 rails-3bc9c35707e1c0b69b7cdffed31dadce2bfc7738.zip |
Merge pull request #13111 from akshay-vishnoi/typo
Typo fixes [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/array/prepend_and_append.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb b/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb index 27718f19d4..f8d48b69df 100644 --- a/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb +++ b/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb @@ -1,7 +1,7 @@ class Array - # The human way of thinking about adding stuff to the end of a list is with append + # The human way of thinking about adding stuff to the end of a list is with append. alias_method :append, :<< - # The human way of thinking about adding stuff to the beginning of a list is with prepend + # The human way of thinking about adding stuff to the beginning of a list is with prepend. alias_method :prepend, :unshift end
\ No newline at end of file |