aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorTrent Michaels <t.michaels@modcloth.com>2013-03-01 12:08:12 -0500
committerChelsea Macaluso <c.macaluso@modcloth.com>2013-03-01 12:08:12 -0500
commitbaa32a57f9f1e146fd0d23b71b38d0d40fd00c99 (patch)
tree037721cfb58ce05d001f5464b21363fc15f19fd7 /guides/source/getting_started.md
parentbbe6948bb563593add246bbf98587467d55afcae (diff)
downloadrails-baa32a57f9f1e146fd0d23b71b38d0d40fd00c99.tar.gz
rails-baa32a57f9f1e146fd0d23b71b38d0d40fd00c99.tar.bz2
rails-baa32a57f9f1e146fd0d23b71b38d0d40fd00c99.zip
Clarified need to remove existing code in welcome index.
Signed-off-by: Chelsea Macaluso <c.macaluso@modcloth.com>
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 87f5e43157..c0cb5b0da9 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -208,7 +208,7 @@ create app/assets/stylesheets/welcome.css.scss
Most important of these are of course the controller, located at `app/controllers/welcome_controller.rb` and the view, located at `app/views/welcome/index.html.erb`.
-Open the `app/views/welcome/index.html.erb` file in your text editor and edit it to contain a single line of code:
+Open the `app/views/welcome/index.html.erb` file in your text editor. Delete all of the existing code in the file, and replace it with the following single line of code:
```html
<h1>Hello, Rails!</h1>