diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-25 19:08:12 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-25 19:08:12 -0300 |
commit | 364500d9059640e4558c0c7c61aa757e63c8721a (patch) | |
tree | 4c543edccc62f3490ba30a87c5ec02ad887cf9e0 /guides | |
parent | 7451bfc5a76764c2f188320eef0369dc97d22120 (diff) | |
parent | 7438e2fa83b7a9185f4814ddd0f7eab2183c142d (diff) | |
download | rails-364500d9059640e4558c0c7c61aa757e63c8721a.tar.gz rails-364500d9059640e4558c0c7c61aa757e63c8721a.tar.bz2 rails-364500d9059640e4558c0c7c61aa757e63c8721a.zip |
Merge branch 'error-explanation'
Closes #11077 [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/code/getting_started/app/views/posts/_form.html.erb | 6 | ||||
-rw-r--r-- | guides/source/getting_started.md | 6 |
2 files changed, 6 insertions, 6 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> diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 0d44f0e776..a773519bba 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -793,7 +793,7 @@ something went wrong. To do that, you'll modify ```html+erb <%= form_for :post, url: posts_path 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> @@ -862,7 +862,7 @@ it look as follows: <%= form_for :post, url: post_path(@post.id), method: :patch 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> @@ -977,7 +977,7 @@ content: ```html+erb <%= 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> |