aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/join_model_test.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-03-20 01:11:57 -0700
committerVijay Dev <vijaydev.cse@gmail.com>2013-03-20 01:11:57 -0700
commitc81dc8e373143be00cccb60c3ba4af4228274962 (patch)
tree52e7cb93d5814ac7b679963417a5475ae9982c5e /activerecord/test/cases/associations/join_model_test.rb
parenteda39084fa9198083c4e758d052fa862354a0a7e (diff)
parentabd89f96cd51988a50947006c50ae4ff3fe8f040 (diff)
downloadrails-c81dc8e373143be00cccb60c3ba4af4228274962.tar.gz
rails-c81dc8e373143be00cccb60c3ba4af4228274962.tar.bz2
rails-c81dc8e373143be00cccb60c3ba4af4228274962.zip
Merge pull request #9821 from vipulnsward/fix_typos_in_AR
Fix some typos in AR- CHANGELOG, tests, method doc. fixed
Diffstat (limited to 'activerecord/test/cases/associations/join_model_test.rb')
-rw-r--r--activerecord/test/cases/associations/join_model_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/join_model_test.rb b/activerecord/test/cases/associations/join_model_test.rb
index c05481dd91..aabeea025f 100644
--- a/activerecord/test/cases/associations/join_model_test.rb
+++ b/activerecord/test/cases/associations/join_model_test.rb
@@ -464,7 +464,7 @@ class AssociationsJoinModelTest < ActiveRecord::TestCase
assert saved_post.reload.tags(true).include?(new_tag)
- new_post = Post.new(:title => "Association replacmenet works!", :body => "You best believe it.")
+ new_post = Post.new(:title => "Association replacement works!", :body => "You best believe it.")
saved_tag = tags(:general)
new_post.tags << saved_tag