1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Very tiny typo fix [ci skip]

This commit is contained in:
Robin Dupret 2013-12-06 20:21:12 +01:00
parent a220b1518d
commit 8cfab46837

View file

@ -35,7 +35,7 @@ module ActiveRecord
#
# Note that when an +Array+ is used, the implicit mapping from the values to database
# integers is derived from the order the values appear in the array. In the example,
# <tt>:active</tt> is mapped to +0+ as it's the first elemet, and <tt>:archived</tt>
# <tt>:active</tt> is mapped to +0+ as it's the first element, and <tt>:archived</tt>
# is mapped to +1+. In general, the +i+-th element is mapped to <tt>i-1</tt> in the
# database.
#