aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/core.rb
diff options
context:
space:
mode:
authorPeter Suschlik <ps@neopoly.de>2012-05-18 12:24:19 +0200
committerPeter Suschlik <ps@neopoly.de>2012-05-18 12:24:19 +0200
commit83153c7a36bb8e31cd5cd6e00f1931fe3c22d371 (patch)
tree38483e7f726e3e048214c549de14a62f8a84c9e3 /activerecord/lib/active_record/core.rb
parent21bff1d66477f5cf27bc7ada675866d810116d23 (diff)
downloadrails-83153c7a36bb8e31cd5cd6e00f1931fe3c22d371.tar.gz
rails-83153c7a36bb8e31cd5cd6e00f1931fe3c22d371.tar.bz2
rails-83153c7a36bb8e31cd5cd6e00f1931fe3c22d371.zip
Fix typo.
Diffstat (limited to 'activerecord/lib/active_record/core.rb')
-rw-r--r--activerecord/lib/active_record/core.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index b2ed606e5f..f2833fbf3c 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -127,7 +127,7 @@ module ActiveRecord
object.is_a?(self)
end
- # Returns an instance of <tt>Arel::Table</tt> loaded with the curent table name.
+ # Returns an instance of <tt>Arel::Table</tt> loaded with the current table name.
#
# class Post < ActiveRecord::Base
# scope :published_and_commented, published.and(self.arel_table[:comments_count].gt(0))