aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/cases/callbacks_test.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-03-18 17:20:05 +0530
committerVipul A M <vipulnsward@gmail.com>2013-03-18 17:20:05 +0530
commit233737706cfe1a9b0d50140ca5c814a070b4b1be (patch)
tree2ef9970d5f52b494a93ee6f5b55d969c6fa54665 /activemodel/test/cases/callbacks_test.rb
parentc4a7c31581c8386198317a2385f9c7d462c18497 (diff)
downloadrails-233737706cfe1a9b0d50140ca5c814a070b4b1be.tar.gz
rails-233737706cfe1a9b0d50140ca5c814a070b4b1be.tar.bz2
rails-233737706cfe1a9b0d50140ca5c814a070b4b1be.zip
fix some typos found in activemodel
Diffstat (limited to 'activemodel/test/cases/callbacks_test.rb')
-rw-r--r--activemodel/test/cases/callbacks_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/test/cases/callbacks_test.rb b/activemodel/test/cases/callbacks_test.rb
index 086e7266ff..c4c34b0be7 100644
--- a/activemodel/test/cases/callbacks_test.rb
+++ b/activemodel/test/cases/callbacks_test.rb
@@ -107,7 +107,7 @@ class CallbacksTest < ActiveModel::TestCase
test "after_create callbacks with both callbacks declared in one line" do
assert_equal ["callback1", "callback2"], Violin1.new.create.history
end
- test "after_create callbacks with both callbacks declared in differnt lines" do
+ test "after_create callbacks with both callbacks declared in different lines" do
assert_equal ["callback1", "callback2"], Violin2.new.create.history
end