aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/core.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-19 19:36:48 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-19 19:36:48 +0530
commit1551de3c04bf872423683926f92916abe2a49ad1 (patch)
tree156daec67fc0305f7723ddc8f157523b50b1d758 /activerecord/lib/active_record/core.rb
parent71a83a9cfde71293abcebd98e874f317aa83160e (diff)
parent4adfd8e68db88e08ea39c05a14a3375651f058d3 (diff)
downloadrails-1551de3c04bf872423683926f92916abe2a49ad1.tar.gz
rails-1551de3c04bf872423683926f92916abe2a49ad1.tar.bz2
rails-1551de3c04bf872423683926f92916abe2a49ad1.zip
Merge branch 'master' of github.com:lifo/docrails
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))