From 8cfab46837f66587c3cdb5ea40a0d968fd3e1b15 Mon Sep 17 00:00:00 2001 From: Robin Dupret Date: Fri, 6 Dec 2013 20:21:12 +0100 Subject: [PATCH] Very tiny typo fix [ci skip] --- activerecord/lib/active_record/enum.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/enum.rb b/activerecord/lib/active_record/enum.rb index b42039e722649..837989aaa721f 100644 --- a/activerecord/lib/active_record/enum.rb +++ b/activerecord/lib/active_record/enum.rb @@ -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, - # :active is mapped to +0+ as it's the first elemet, and :archived + # :active is mapped to +0+ as it's the first element, and :archived # is mapped to +1+. In general, the +i+-th element is mapped to i-1 in the # database. #