aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorJoseph Pecoraro <joepeck02@gmail.com>2009-05-29 10:29:44 -0400
committerJoseph Pecoraro <joepeck02@gmail.com>2009-05-29 10:29:44 -0400
commit72b033f6b6ba590a3993d72fef615548d3a8b7f7 (patch)
treea182333b69600cebb5acdb3f610c2d476fec9453 /railties/guides/source/getting_started.textile
parentd2b8564ab213d0b63790297f29696a277812eea5 (diff)
downloadrails-72b033f6b6ba590a3993d72fef615548d3a8b7f7.tar.gz
rails-72b033f6b6ba590a3993d72fef615548d3a8b7f7.tar.bz2
rails-72b033f6b6ba590a3993d72fef615548d3a8b7f7.zip
Corrected paths to standard.
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index c15d6aa8ab..15f900563f 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -383,7 +383,7 @@ NOTE: Because you're working in the development environment by default, this com
h4. Adding a Link
-To hook the posts up to the home page you've already created, you can add a link to the home page. Open +/app/views/home/index.html.erb+ and modify it as follows:
+To hook the posts up to the home page you've already created, you can add a link to the home page. Open +app/views/home/index.html.erb+ and modify it as follows:
<code lang="ruby">
<h1>Hello, Rails!</h1>
@@ -1295,8 +1295,8 @@ Now that you've seen your first Rails application, you should feel free to updat
Rails also comes with built-in help that you can generate using the rake command-line utility:
-* Running +rake doc:guides+ will put a full copy of the Rails Guides in the +/doc/guides+ folder of your application. Open +/doc/guides/index.html+ in your web browser to explore the Guides.
-* Running +rake doc:rails+ will put a full copy of the API documentation for Rails in the +/doc/api+ folder of your application. Open +/doc/api/index.html+ in your web browser to explore the API documentation.
+* Running +rake doc:guides+ will put a full copy of the Rails Guides in the +doc/guides+ folder of your application. Open +doc/guides/index.html+ in your web browser to explore the Guides.
+* Running +rake doc:rails+ will put a full copy of the API documentation for Rails in the +doc/api+ folder of your application. Open +doc/api/index.html+ in your web browser to explore the API documentation.
h3. Changelog