diff options
author | Xavier Noria <fxn@hashref.com> | 2015-01-21 09:25:03 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2015-01-21 09:25:03 +0100 |
commit | fc36841dbb85652fed450e0ba8f2569b7ce59bcf (patch) | |
tree | 55b61c644fc3e0282a52b6613e7327880bad8cc9 | |
parent | be9b68038e83a617eb38c26147659162e4ac3d2c (diff) | |
parent | 797f78d08d56f0c1f5b0e00fe65987c248409c79 (diff) | |
download | rails-fc36841dbb85652fed450e0ba8f2569b7ce59bcf.tar.gz rails-fc36841dbb85652fed450e0ba8f2569b7ce59bcf.tar.bz2 rails-fc36841dbb85652fed450e0ba8f2569b7ce59bcf.zip |
Merge pull request #18620 from mechanicles/change-a-to-an
Change 'a' to 'an' for 'attribute' word [ci skip]
-rw-r--r-- | activerecord/lib/active_record/attributes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attributes.rb b/activerecord/lib/active_record/attributes.rb index b263a89d79..faf5d632ec 100644 --- a/activerecord/lib/active_record/attributes.rb +++ b/activerecord/lib/active_record/attributes.rb @@ -14,7 +14,7 @@ module ActiveRecord end module ClassMethods # :nodoc: - # Defines or overrides a attribute on this model. This allows customization of + # Defines or overrides an attribute on this model. This allows customization of # Active Record's type casting behavior, as well as adding support for user defined # types. # |