Merge pull request #13034 from vipulnsward/some_typos

Fix some minor typos
This commit is contained in:
Rafael Mendonça França 2013-11-25 10:49:35 -08:00
commit a6900a2073
2 changed files with 2 additions and 2 deletions

@ -52,7 +52,7 @@
*Adam Williams*, *Yves Senn*
* Fix bug where `has_one` associaton record update result in crash, when replaced with itself.
* Fix bug where `has_one` association record update result in crash, when replaced with itself.
Fixes #12834.

@ -104,7 +104,7 @@ def test_do_not_call_callbacks_for_delete_all
car = Car.create(:name => 'honda')
car.funky_bulbs.create!
assert_nothing_raised { car.reload.funky_bulbs.delete_all }
assert_equal 0, Bulb.count, "bulbs should have been deleted using :delete_all strategey"
assert_equal 0, Bulb.count, "bulbs should have been deleted using :delete_all strategy"
end
def test_building_the_associated_object_with_implicit_sti_base_class