aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-09-06 20:39:35 +0530
committerGitHub <noreply@github.com>2016-09-06 20:39:35 +0530
commit2e4eb03925ae5854691a4318787e7707358615e8 (patch)
tree97c640f3b491ac215d6ced180da231c6897a6a9a
parent38fae35d53a029ee5b9c1192cb67ce2aa28f3904 (diff)
parent28426f53492c62e9f301cee9ac7ffafaba32d0da (diff)
downloadrails-2e4eb03925ae5854691a4318787e7707358615e8.tar.gz
rails-2e4eb03925ae5854691a4318787e7707358615e8.tar.bz2
rails-2e4eb03925ae5854691a4318787e7707358615e8.zip
Merge pull request #26406 from SpartaSixZero/master
Minor grammar fix in engines.md [ci skip]
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index d6118c014f..83c0a7f337 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -46,7 +46,7 @@ see how to hook it into an application.
Engines can also be isolated from their host applications. This means that an
application is able to have a path provided by a routing helper such as
-`articles_path` and use an engine also that provides a path also called
+`articles_path` and use an engine that also provides a path also called
`articles_path`, and the two would not clash. Along with this, controllers, models
and table names are also namespaced. You'll see how to do this later in this
guide.