diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2013-03-10 00:09:26 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2013-03-10 00:09:26 +0530 |
commit | b938f08a3352981f9a2876a60ff2600438b771c2 (patch) | |
tree | a4405b069c506366966bb261b45b1720026722ba /actionpack/lib/action_view | |
parent | b3a31e936363472e7f9bf08cdb0d894127fbd753 (diff) | |
parent | be3e402c79d5c1eac4729e2982d05161c1a9b6a2 (diff) | |
download | rails-b938f08a3352981f9a2876a60ff2600438b771c2.tar.gz rails-b938f08a3352981f9a2876a60ff2600438b771c2.tar.bz2 rails-b938f08a3352981f9a2876a60ff2600438b771c2.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/capture_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/capture_helper.rb b/actionpack/lib/action_view/helpers/capture_helper.rb index 1bad82159a..5afe435459 100644 --- a/actionpack/lib/action_view/helpers/capture_helper.rb +++ b/actionpack/lib/action_view/helpers/capture_helper.rb @@ -180,7 +180,7 @@ module ActionView # <title>My Website</title> # <%= yield :script %> # </head> - # <body class="<%= content_for?(:right_col) ? 'one-column' : 'two-column' %>"> + # <body class="<%= content_for?(:right_col) ? 'two-column' : 'one-column' %>"> # <%= yield %> # <%= yield :right_col %> # </body> |