1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fixes typo in finders guide

This commit is contained in:
Xavier Noria 2009-03-14 21:43:56 +01:00
parent 8867a636b3
commit b8391e4018

View file

@ -790,7 +790,7 @@ Post.all :include => [:category, :comments]
This loads all the posts and the associated category and comments for each post.
h5. Nested Assocaitions Hash
h5. Nested Associations Hash
<ruby>
Category.find 1, :include => {:posts => [{:comments => :guest}, :tags]}