aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorDaniel Schierbeck <daniel.schierbeck@gmail.com>2010-02-08 13:46:27 +0100
committerDaniel Schierbeck <daniel.schierbeck@gmail.com>2010-02-08 13:46:27 +0100
commit50b3040115a386acb5e68235c46c7227a47e3d7b (patch)
tree809f73ebe6813a6688bd348af216a21f14c2f979 /railties/guides/source/getting_started.textile
parent6e8356147d6b7f33de42439dd5ca7f92b705367f (diff)
downloadrails-50b3040115a386acb5e68235c46c7227a47e3d7b.tar.gz
rails-50b3040115a386acb5e68235c46c7227a47e3d7b.tar.bz2
rails-50b3040115a386acb5e68235c46c7227a47e3d7b.zip
Remove commas
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-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 f0488ddc90..8ddf0cf3cf 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -319,7 +319,7 @@ $ rm public/index.html
We need to do this as Rails will deliver any static file in the +public+ directory in preference to any dynamic contact we generate from the controllers.
-Now, you have to tell Rails where your actual home page is located. Open the file +config/routes.rb+ in your editor. This is your application's, _routing file_, which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. There are only comments in this file, so we need to add at the top the following:
+Now, you have to tell Rails where your actual home page is located. Open the file +config/routes.rb+ in your editor. This is your application's _routing file_ which holds entries in a special DSL (domain-specific language) that tells Rails how to connect incoming requests to controllers and actions. There are only comments in this file, so we need to add at the top the following:
<ruby>
Blog::Application.routes.draw do |map|