Skip to content

Commit

Permalink
Change 'equals to' to 'equal to'
Browse files Browse the repository at this point in the history
  • Loading branch information
Cody Fauser committed Sep 21, 2008
1 parent ce8fded commit 308456e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions activesupport/lib/active_support/core_ext/array/access.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,47 +23,47 @@ def to(position)
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
Expand Down

0 comments on commit 308456e

Please sign in to comment.