diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 19:30:57 -0700 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 19:30:57 -0700 |
commit | 507dba67c425f185c49bbb751707e81cfd3e0b9c (patch) | |
tree | fcdf4995e98280594b0cf911d34e94df1984ca22 /railties/guides | |
parent | 75aa3dccb301f7e4505596480eceb27b7d91bfdb (diff) | |
download | rails-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/guides')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
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> |