aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2010-12-26 00:09:08 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2010-12-26 00:09:08 +0530
commit9ed385fe1798bd469144c57dbfd89db6781d4ad6 (patch)
treef8954ddfaceff6af007338f638d566a99d031212
parent2801efbc3b3a5c5cf3406aa7063852a86898f547 (diff)
downloadrails-9ed385fe1798bd469144c57dbfd89db6781d4ad6.tar.gz
rails-9ed385fe1798bd469144c57dbfd89db6781d4ad6.tar.bz2
rails-9ed385fe1798bd469144c57dbfd89db6781d4ad6.zip
fix formatting
-rw-r--r--railties/guides/source/action_view_overview.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_view_overview.textile b/railties/guides/source/action_view_overview.textile
index ffcc98f41b..e1fc0e7732 100644
--- a/railties/guides/source/action_view_overview.textile
+++ b/railties/guides/source/action_view_overview.textile
@@ -439,7 +439,7 @@ The +capture+ method allows you to extract part of a template into a variable. Y
<% @greeting = capture do %>
<p>Welcome! The date and time is <%= Time.now %></p>
<% end %>
-<ruby>
+</ruby>
The captured variable can then be used anywhere else.