diff options
author | Gregory Igelmund <gregory.igelmund@gmail.com> | 2014-07-12 01:03:07 +0200 |
---|---|---|
committer | Gregory Igelmund <gregory.igelmund@gmail.com> | 2014-07-12 01:03:07 +0200 |
commit | a37741a8f04bb90801c759935bd908e1f5848ca3 (patch) | |
tree | 2e5c2d6d2372a10eff834d17aeecd35e00bcf2f1 /activerecord | |
parent | e454a3d994b101c905d4ef4ea3dde1b402e3fc24 (diff) | |
download | rails-a37741a8f04bb90801c759935bd908e1f5848ca3.tar.gz rails-a37741a8f04bb90801c759935bd908e1f5848ca3.tar.bz2 rails-a37741a8f04bb90801c759935bd908e1f5848ca3.zip |
Fixing typo in comment
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb index e3ac891520..cbe5cf202a 100644 --- a/activerecord/lib/active_record/attribute_methods.rb +++ b/activerecord/lib/active_record/attribute_methods.rb @@ -73,7 +73,7 @@ module ActiveRecord # accessors, mutators and query methods. def define_attribute_methods # :nodoc: return false if @attribute_methods_generated - # Use a mutex; we don't want two thread simultaneously trying to define + # Use a mutex; we don't want two threads simultaneously trying to define # attribute methods. generated_attribute_methods.synchronize do return false if @attribute_methods_generated |