diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-25 19:06:15 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-25 19:07:49 -0300 |
commit | 7438e2fa83b7a9185f4814ddd0f7eab2183c142d (patch) | |
tree | 4c543edccc62f3490ba30a87c5ec02ad887cf9e0 /guides/code | |
parent | 1238b5dc02c46f6e774e4611f5c5715cf01ecca5 (diff) | |
download | rails-7438e2fa83b7a9185f4814ddd0f7eab2183c142d.tar.gz rails-7438e2fa83b7a9185f4814ddd0f7eab2183c142d.tar.bz2 rails-7438e2fa83b7a9185f4814ddd0f7eab2183c142d.zip |
Fix another "error_explanation" css class in guides [ci skip]
Diffstat (limited to 'guides/code')
-rw-r--r-- | guides/code/getting_started/app/views/posts/_form.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/code/getting_started/app/views/posts/_form.html.erb b/guides/code/getting_started/app/views/posts/_form.html.erb index c9fb74af9c..f2f83585e1 100644 --- a/guides/code/getting_started/app/views/posts/_form.html.erb +++ b/guides/code/getting_started/app/views/posts/_form.html.erb @@ -1,6 +1,6 @@ <%= form_for @post do |f| %> <% if @post.errors.any? %> - <div id="errorExplanation"> + <div id="error_explanation"> <h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2> <ul> @@ -14,12 +14,12 @@ <%= f.label :title %><br> <%= f.text_field :title %> </p> - + <p> <%= f.label :text %><br> <%= f.text_area :text %> </p> - + <p> <%= f.submit %> </p> |