Skip to content

Commit

Permalink
Corrected typo in example on rendering collections in partials changi…
Browse files Browse the repository at this point in the history
…ng @posts to @products to match the example
  • Loading branch information
Michael MacDonald authored and fxn committed Aug 31, 2010
1 parent c1bafe0 commit b29eb89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/guides/source/layouts_and_rendering.textile
Expand Up @@ -1087,7 +1087,7 @@ Partials are very useful in rendering collections. When you pass a collection to

When a partial is called with a pluralized collection, then the individual instances of the partial have access to the member of the collection being rendered via a variable named after the partial. In this case, the partial is +_product+, and within the +_product+ partial, you can refer to +product+ to get the instance that is being rendered.

In Rails 3.0 there is also a shorthand for this, assuming +@posts+ is a collection of +post+ instances, you can simply do in the +index.html.erb+:
In Rails 3.0 there is also a shorthand for this, assuming +@products+ is a collection of +product+ instances, you can simply do in the +index.html.erb+:

<erb>
<h1>Products</h1>
Expand Down

0 comments on commit b29eb89

Please sign in to comment.