diff options
author | Jon Leighton <j@jonathanleighton.com> | 2010-10-19 18:32:02 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2010-10-19 18:32:02 +0100 |
commit | 7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c (patch) | |
tree | 2eefa7484f46b4a6c20e114d441b056bb1d293f6 /activerecord/lib | |
parent | cf7c475ef187e88044cba139cc2e1dbf5f180b15 (diff) | |
download | rails-7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c.tar.gz rails-7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c.tar.bz2 rails-7b84477598137c6261bf2aeb5ce0d1b17e4b2b3c.zip |
Fix typo
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 2 |
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. # |