aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-11-19 00:18:05 -0800
committerYves Senn <yves.senn@gmail.com>2013-11-19 00:18:05 -0800
commitbe25709eff130dd801d86b196ca32f323cae9b16 (patch)
tree124637578bb971c3c611aac068cbbdf6c73ebb18
parenta3a0d087d04ae507a317f0d6db49c604fd5fc9d8 (diff)
parent5019a046c68bcdfd59640bd106d87667fdacf816 (diff)
downloadrails-be25709eff130dd801d86b196ca32f323cae9b16.tar.gz
rails-be25709eff130dd801d86b196ca32f323cae9b16.tar.bz2
rails-be25709eff130dd801d86b196ca32f323cae9b16.zip
Merge pull request #12945 from fluxusfrequency/patch-1
Fixed typos in "shallow routes" and "routing concerns" in routing.md [ci skip]
-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