aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/routing.md
diff options
context:
space:
mode:
authorBen Lewis <bennlewis@gmail.com>2013-11-18 21:10:21 -0700
committerBen Lewis <bennlewis@gmail.com>2013-11-18 21:10:21 -0700
commit5019a046c68bcdfd59640bd106d87667fdacf816 (patch)
treeecadacf85882adf4a7ce6332c9f4a25c73d7a992 /guides/source/routing.md
parent2e9e670c0fdf1540c8bf8c49a8c11a41aef74c75 (diff)
downloadrails-5019a046c68bcdfd59640bd106d87667fdacf816.tar.gz
rails-5019a046c68bcdfd59640bd106d87667fdacf816.tar.bz2
rails-5019a046c68bcdfd59640bd106d87667fdacf816.zip
Fixed typos in shallow routes and routing concerns
Grammatical tense correction: "There exists two" => "There exist two". Plurality correction: "can be reused inside others resources" => "can be reused inside other resources".
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 19784823f7..019861c3d6 100644
--- a/guides/source/routing.md
+++ b/guides/source/routing.md
@@ -338,7 +338,7 @@ shallow do
end
```
-There exists two options for `scope` to customize shallow routes. `:shallow_path` prefixes member paths with the specified parameter:
+There exist two options for `scope` to customize shallow routes. `:shallow_path` prefixes member paths with the specified parameter:
```ruby
scope shallow_path: "sekret" do
@@ -384,7 +384,7 @@ The comments resource here will have the following routes generated for it:
### Routing concerns
-Routing Concerns allows you to declare common routes that can be reused inside others resources and routes. To define a concern:
+Routing Concerns allows you to declare common routes that can be reused inside other resources and routes. To define a concern:
```ruby
concern :commentable do