aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-02-25 14:27:58 +0100
committerXavier Noria <fxn@hashref.com>2009-02-25 14:27:58 +0100
commitf0d44ec898f0e6c4331e7ecca85a50f9ab13dee9 (patch)
treeeb61af9185589de8a663083b73afe866c3854698 /railties
parent9bb977db248bd55e7612749b6f2af2a1d5e5fa51 (diff)
downloadrails-f0d44ec898f0e6c4331e7ecca85a50f9ab13dee9.tar.gz
rails-f0d44ec898f0e6c4331e7ecca85a50f9ab13dee9.tar.bz2
rails-f0d44ec898f0e6c4331e7ecca85a50f9ab13dee9.zip
s:hbody:/body:g in layouts & rendering guide
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/layouts_and_rendering.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/layouts_and_rendering.textile b/railties/guides/source/layouts_and_rendering.textile
index d9bc605b84..f0fad2ba70 100644
--- a/railties/guides/source/layouts_and_rendering.textile
+++ b/railties/guides/source/layouts_and_rendering.textile
@@ -683,7 +683,7 @@ Within the context of a layout, +yield+ identifies a section where content from
</head>
<body>
<%= yield %>
- <hbody>
+ </body>
</html>
</erb>
@@ -696,7 +696,7 @@ You can also create a layout with multiple yielding regions:
</head>
<body>
<%= yield %>
- <hbody>
+ </body>
</html>
</erb>
@@ -723,7 +723,7 @@ The result of rendering this page into the supplied layout would be this HTML:
</head>
<body>
<p>Hello, Rails!</p>
- <hbody>
+ </body>
</html>
</erb>