diff options
author | Luzi Humm <luzi.humm@elage.ch> | 2013-06-25 00:22:19 +0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-25 19:07:49 -0300 |
commit | 1238b5dc02c46f6e774e4611f5c5715cf01ecca5 (patch) | |
tree | 678eb0b957854dcb9a36fd4d39d45a3004167648 /guides/source | |
parent | 7451bfc5a76764c2f188320eef0369dc97d22120 (diff) | |
download | rails-1238b5dc02c46f6e774e4611f5c5715cf01ecca5.tar.gz rails-1238b5dc02c46f6e774e4611f5c5715cf01ecca5.tar.bz2 rails-1238b5dc02c46f6e774e4611f5c5715cf01ecca5.zip |
change id="errorExplanation" to id="error_explanation" to match the generated files
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.md | 6 |
1 files changed, 3 insertions, 3 deletions
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> |