diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-19 19:36:48 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-19 19:36:48 +0530 |
commit | 1551de3c04bf872423683926f92916abe2a49ad1 (patch) | |
tree | 156daec67fc0305f7723ddc8f157523b50b1d758 /activerecord/lib/active_record/core.rb | |
parent | 71a83a9cfde71293abcebd98e874f317aa83160e (diff) | |
parent | 4adfd8e68db88e08ea39c05a14a3375651f058d3 (diff) | |
download | rails-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.rb | 2 |
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)) |