diff options
author | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:27:14 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:27:14 -0700 |
commit | 434fbe454cb2367e74b757ba34b7035f7379ac8a (patch) | |
tree | 91c22f11478570ea0c3d6596a07421141a81be27 | |
parent | 703d5c2033665987c2fa6eff9f39095fb6c03061 (diff) | |
download | rails-434fbe454cb2367e74b757ba34b7035f7379ac8a.tar.gz rails-434fbe454cb2367e74b757ba34b7035f7379ac8a.tar.bz2 rails-434fbe454cb2367e74b757ba34b7035f7379ac8a.zip |
Update wording to flow better
-rw-r--r-- | railties/guides/source/getting_started.textile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index c40c21102c..78cf01cdc0 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -515,8 +515,8 @@ file_ which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. This file contains many sample routes on commented lines, and one of them actually shows you how to connect the root of your site to a specific controller and action. -Find the line beginning with +root :to+, uncomment it and change it like the -following: +Find the line beginning with +root :to+, uncomment it by removing the pound sign +at the beginning of the line. It should look something like the following: <ruby> Blog::Application.routes.draw do @@ -544,7 +544,7 @@ resource in a single operation, scaffolding is the tool for the job. h3. Creating a Resource -In the case of the blog application, you can start by generating a scaffolded +In the case of the blog application, you can start by generating a scaffold for the Post resource: this will represent a single blog posting. To do this, enter this command in your terminal: |