aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array/access.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-10-05 22:16:26 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-10-05 22:16:26 +0100
commita2932784bb71e72a78c32819ebd7ed2bed551e3e (patch)
tree99bfd589a48153e33f19ae72baa6e98f5708a9b8 /activesupport/lib/active_support/core_ext/array/access.rb
parent4df45d86097efbeabceecfe53d8ea2da9ccbb107 (diff)
downloadrails-a2932784bb71e72a78c32819ebd7ed2bed551e3e.tar.gz
rails-a2932784bb71e72a78c32819ebd7ed2bed551e3e.tar.bz2
rails-a2932784bb71e72a78c32819ebd7ed2bed551e3e.zip
Merge docrails
Diffstat (limited to 'activesupport/lib/active_support/core_ext/array/access.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/array/access.rb18
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