aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-17 01:48:25 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-17 01:48:47 +0530
commitbf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5 (patch)
treec378410079fe6b21010042d1e38829bb842a6dd6
parenteb06d582e4cb5f255a3160b2bc3266aafeb3103f (diff)
downloadrails-bf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5.tar.gz
rails-bf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5.tar.bz2
rails-bf0212b92ab7ebf1f5c6971a1d8ae80e7c18dfb5.zip
remove stray text in getting started guide [ci skip]
-rw-r--r--guides/source/getting_started.textile8
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>