aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2012-03-14 19:30:57 -0700
committerRyan Bigg <radarlistener@gmail.com>2012-03-14 19:30:57 -0700
commit507dba67c425f185c49bbb751707e81cfd3e0b9c (patch)
treefcdf4995e98280594b0cf911d34e94df1984ca22 /railties
parent75aa3dccb301f7e4505596480eceb27b7d91bfdb (diff)
downloadrails-507dba67c425f185c49bbb751707e81cfd3e0b9c.tar.gz
rails-507dba67c425f185c49bbb751707e81cfd3e0b9c.tar.bz2
rails-507dba67c425f185c49bbb751707e81cfd3e0b9c.zip
[getting started] correct typo in welcome/index.html.erb template path
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 9a08a6b7f4..ece017ae03 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -176,7 +176,7 @@ $ rails generate controller welcome index
Rails will create several files for you. 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 and edit it to contain a single line of code:
<code class="html">
<h1>Hello, Rails!</h1>