diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-17 01:48:25 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-17 01:48:47 +0530 |
commit | bf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5 (patch) | |
tree | c378410079fe6b21010042d1e38829bb842a6dd6 /guides/source | |
parent | eb06d582e4cb5f255a3160b2bc3266aafeb3103f (diff) | |
download | rails-bf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5.tar.gz rails-bf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5.tar.bz2 rails-bf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5.zip |
remove stray text in getting started guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.textile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile index e93a94448a..f32588d591 100644 --- a/guides/source/getting_started.textile +++ b/guides/source/getting_started.textile @@ -1332,7 +1332,7 @@ So first, we'll wire up the Post show template <p> <strong>Text:</strong> - <%= @post.texthttp://beginningruby.org/ %> + <%= @post.text %> </p> <h2>Add a comment:</h2> @@ -1391,7 +1391,7 @@ template. This is where we want the comment to show, so let's add that to the <p> <strong>Text:</strong> - <%= @post.texthttp://beginningruby.org/ %> + <%= @post.text %> </p> <h2>Comments</h2> @@ -1466,7 +1466,7 @@ following: <p> <strong>Text:</strong> - <%= @post.texthttp://beginningruby.org/ %> + <%= @post.text %> </p> <h2>Comments</h2> @@ -1528,7 +1528,7 @@ Then you make the +app/views/posts/show.html.erb+ look like the following: <p> <strong>Text:</strong> - <%= @post.texthttp://beginningruby.org/ %> + <%= @post.text %> </p> <h2>Add a comment:</h2> |