diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-30 22:28:58 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-30 22:28:58 +0530 |
commit | e591b7b4e1825f34906664eb27aabd9aa6cc56b8 (patch) | |
tree | b18936d8d04969c79e20c8af3d623e492cde8083 /activesupport/lib/active_support | |
parent | 6ae626b810995c7f7b50fb1c1a726159bf1450ee (diff) | |
download | rails-e591b7b4e1825f34906664eb27aabd9aa6cc56b8.tar.gz rails-e591b7b4e1825f34906664eb27aabd9aa6cc56b8.tar.bz2 rails-e591b7b4e1825f34906664eb27aabd9aa6cc56b8.zip |
some copy edits [ci skip]
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/array/conversions.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/conversions.rb b/activesupport/lib/active_support/core_ext/array/conversions.rb index 2b7e9942bf..1e0de651c7 100644 --- a/activesupport/lib/active_support/core_ext/array/conversions.rb +++ b/activesupport/lib/active_support/core_ext/array/conversions.rb @@ -8,8 +8,8 @@ class Array # joined by the connector word. # # You can pass the following options to change the default behaviour. If you - # pass an option key that doesn't exist in the next list, it will raise an - # "Unknow key" error. + # pass an option key that doesn't exist in the list below, it will raise an + # <tt>ArgumentError</tt>. # # Options: # @@ -39,7 +39,7 @@ class Array # # Examples using <tt>:locale</tt> option: # - # # With the next locale dictionary: + # # Given this locale dictionary: # # # # es: # # support: @@ -88,7 +88,7 @@ class Array # # class Blog < ActiveRecord::Base # def to_s - # title + # title # end # end # |