diff options
author | Chris Kalafarski <chris@farski.com> | 2011-03-08 09:55:57 -0500 |
---|---|---|
committer | Chris Kalafarski <chris@farski.com> | 2011-03-08 09:55:57 -0500 |
commit | 092538045e890e0a8769cc99586c8483426e0e2e (patch) | |
tree | 668922babaf19140d5e87d5103660ae16d03d355 /railties | |
parent | 9798ee2619154de5b2f052735d1ec80c47857178 (diff) | |
download | rails-092538045e890e0a8769cc99586c8483426e0e2e.tar.gz rails-092538045e890e0a8769cc99586c8483426e0e2e.tar.bz2 rails-092538045e890e0a8769cc99586c8483426e0e2e.zip |
The root route example was the only using double quotes; switched it to single quotes for consistency
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/routes.rb b/railties/lib/rails/generators/rails/app/templates/config/routes.rb index 3e35d81a69..d50f536164 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/routes.rb +++ b/railties/lib/rails/generators/rails/app/templates/config/routes.rb @@ -48,7 +48,7 @@ # You can have the root of your site routed with "root" # just remember to delete public/index.html. - # root :to => "welcome#index" + # root :to => 'welcome#index' # See how all your routes lay out with "rake routes" |