diff options
author | Cody Fauser <cody@jadedpixel.com> | 2008-09-21 18:01:27 -0400 |
---|---|---|
committer | Cody Fauser <cody@jadedpixel.com> | 2008-09-21 18:01:27 -0400 |
commit | 308456e5da602c8156d9b6337b8126b4239cd63c (patch) | |
tree | 194aa93b3757e162616f6755b2c82a04fdd9c158 /activesupport | |
parent | ce8fded9bb75dca4ffcd88ba9de9b0a2e74493d6 (diff) | |
download | rails-308456e5da602c8156d9b6337b8126b4239cd63c.tar.gz rails-308456e5da602c8156d9b6337b8126b4239cd63c.tar.bz2 rails-308456e5da602c8156d9b6337b8126b4239cd63c.zip |
Change 'equals to' to 'equal to'
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/array/access.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/access.rb b/activesupport/lib/active_support/core_ext/array/access.rb index 779ca40aea..a3b2a54c7d 100644 --- a/activesupport/lib/active_support/core_ext/array/access.rb +++ b/activesupport/lib/active_support/core_ext/array/access.rb @@ -23,47 +23,47 @@ module ActiveSupport #:nodoc: self[0..position] end - # Equals to <tt>self[1]</tt>. + # Equal to <tt>self[1]</tt>. def second self[1] end - # Equals to <tt>self[2]</tt>. + # Equal to <tt>self[2]</tt>. def third self[2] end - # Equals to <tt>self[3]</tt>. + # Equal to <tt>self[3]</tt>. def fourth self[3] end - # Equals to <tt>self[4]</tt>. + # Equal to <tt>self[4]</tt>. def fifth self[4] end - # Equals to <tt>self[5]</tt>. + # Equal to <tt>self[5]</tt>. def sixth self[5] end - # Equals to <tt>self[6]</tt>. + # Equal to <tt>self[6]</tt>. def seventh self[6] end - # Equals to <tt>self[7]</tt>. + # Equal to <tt>self[7]</tt>. def eighth self[7] end - # Equals to <tt>self[8]</tt>. + # Equal to <tt>self[8]</tt>. def ninth self[8] end - # Equals to <tt>self[9]</tt>. + # Equal to <tt>self[9]</tt>. def tenth self[9] end |