diff options
author | Bryan Woods <bryanwoods4e@gmail.com> | 2010-06-15 13:38:22 -0400 |
---|---|---|
committer | Bryan Woods <bryanwoods4e@gmail.com> | 2010-06-15 13:38:22 -0400 |
commit | 89b96c03132156f0d08b2a65d330e50cfbe94910 (patch) | |
tree | 498af35d90d5cc588a7b027daa7b12db02513899 /activemodel/lib | |
parent | 538b7b97bb64f56a9d8c62f280106f3916080f6d (diff) | |
download | rails-89b96c03132156f0d08b2a65d330e50cfbe94910.tar.gz rails-89b96c03132156f0d08b2a65d330e50cfbe94910.tar.bz2 rails-89b96c03132156f0d08b2a65d330e50cfbe94910.zip |
Active Model lint - fix minor typos
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/lint.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/lint.rb b/activemodel/lib/active_model/lint.rb index a5977bf3cc..fe650053d9 100644 --- a/activemodel/lib/active_model/lint.rb +++ b/activemodel/lib/active_model/lint.rb @@ -56,7 +56,7 @@ module ActiveModel # Returns a boolean that specifies whether the object has been persisted yet. # This is used when calculating the URL for an object. If the object is # not persisted, a form for that object, for instance, will be POSTed to the - # collection. If it is persisted, a form for the object will put PUTed to the + # collection. If it is persisted, a form for the object will be PUT to the # URL for the object. def test_persisted? assert model.respond_to?(:persisted?), "The model should respond to persisted?" @@ -65,7 +65,7 @@ module ActiveModel # == Naming # - # Model.model_name must returns a string with some convenience methods as + # Model.model_name must return a string with some convenience methods as # :human and :partial_path. Check ActiveModel::Naming for more information. # def test_model_naming |