aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2010-10-19 18:32:02 +0100
committerJon Leighton <j@jonathanleighton.com>2010-10-19 18:32:02 +0100
commit7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c (patch)
tree2eefa7484f46b4a6c20e114d441b056bb1d293f6 /activerecord/lib/active_record/associations.rb
parentcf7c475ef187e88044cba139cc2e1dbf5f180b15 (diff)
downloadrails-7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c.tar.gz
rails-7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c.tar.bz2
rails-7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c.zip
Fix typo
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rw-r--r--activerecord/lib/active_record/associations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 98a101fac4..25be9a52ff 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -525,7 +525,7 @@ module ActiveRecord
# end
#
# When using nested association, you will not be able to modify the association because there
- # is not enough information to know what modification to make. For example, if you tries to
+ # is not enough information to know what modification to make. For example, if you tried to
# add a <tt>Commenter</tt> in the example above, there would be no way to tell how to set up the
# intermediate <tt>Post</tt> and <tt>Comment</tt> objects.
#