aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/routing.md
diff options
context:
space:
mode:
authorSunny Ripert <sunny@sunfox.org>2013-05-28 14:34:47 +0200
committerSunny Ripert <sunny@sunfox.org>2013-05-28 14:38:02 +0200
commit606c09b8dbaa65ab124baaa0ee62a885a25a2222 (patch)
tree2ce87343100ce90b7ba2b677c0a81c2a567cc528 /guides/source/routing.md
parent666d028bb82428a0649935b1d1814db0e20a406f (diff)
downloadrails-606c09b8dbaa65ab124baaa0ee62a885a25a2222.tar.gz
rails-606c09b8dbaa65ab124baaa0ee62a885a25a2222.tar.bz2
rails-606c09b8dbaa65ab124baaa0ee62a885a25a2222.zip
Consistent use of one space only after punctuation
Diffstat (limited to 'guides/source/routing.md')
-rw-r--r--guides/source/routing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md
index c26a827172..076b9dd176 100644
--- a/guides/source/routing.md
+++ b/guides/source/routing.md
@@ -36,7 +36,7 @@ the request is dispatched to the `patients` controller's `show` action with `{ i
### Generating Paths and URLs from Code
-You can also generate paths and URLs. If the route above is modified to be:
+You can also generate paths and URLs. If the route above is modified to be:
```ruby
get '/patients/:id', to: 'patients#show', as: 'patient'
@@ -803,7 +803,7 @@ You should put the `root` route at the top of the file, because it is the most p
NOTE: The `root` route only routes `GET` requests to the action.
-You can also use root inside namespaces and scopes as well. For example:
+You can also use root inside namespaces and scopes as well. For example:
```ruby
namespace :admin do