From 951d70dbe07e0e7fbe36e98e9c3a136475ca3994 Mon Sep 17 00:00:00 2001 From: Dan Pickett Date: Sun, 15 Jan 2012 15:08:01 -0500 Subject: change class to id per scaffold change #4472 --- railties/guides/source/getting_started.textile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'railties/guides/source/getting_started.textile') diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index c2ac5743e3..c3141c4435 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -1017,7 +1017,7 @@ by its id value. After finding the record, Rails displays it by using +app/views/posts/show.html.erb+: -

<%= notice %>

+

<%= notice %>

Name: @@ -1284,7 +1284,7 @@ So first, we'll wire up the Post show template (+/app/views/posts/show.html.erb+) to let us make a new comment: -

<%= notice %>

+

<%= notice %>

Name: @@ -1350,7 +1350,7 @@ template. This is where we want the comment to show, so let's add that to the +app/views/posts/show.html.erb+. -

<%= notice %>

+

<%= notice %>

Name: @@ -1432,7 +1432,7 @@ Then you can change +app/views/posts/show.html.erb+ to look like the following: -

<%= notice %>

+

<%= notice %>

Name: @@ -1503,7 +1503,7 @@ create a file +app/views/comments/_form.html.erb+ containing: Then you make the +app/views/posts/show.html.erb+ look like the following: -

<%= notice %>

+

<%= notice %>

Name: @@ -1774,7 +1774,7 @@ Finally, we will edit the app/views/posts/show.html.erb template to show our tags. -

<%= notice %>

+

<%= notice %>

Name: @@ -1834,7 +1834,7 @@ Now you can edit the view in app/views/posts/show.html.erb to look like this: -

<%= notice %>

+

<%= notice %>

Name: -- cgit v1.2.3