aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--guides/source/getting_started.textile12
1 files changed, 6 insertions, 6 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile
index f449cc9679..142c5f8a70 100644
--- a/guides/source/getting_started.textile
+++ b/guides/source/getting_started.textile
@@ -585,12 +585,12 @@ And then finally a view for this action, located at +app/views/posts/index.html.
<th>Text</th>
</tr>
-<% @posts.each do |post| %>
- <tr>
- <td><%= post.title %></td>
- <td><%= post.text %></td>
- </tr>
-<% end %>
+ <% @posts.each do |post| %>
+ <tr>
+ <td><%= post.title %></td>
+ <td><%= post.text %></td>
+ </tr>
+ <% end %>
</table>
</erb>