aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorMark Sun <sunmark14@gmail.com>2016-09-06 11:00:09 -0400
committerGitHub <noreply@github.com>2016-09-06 11:00:09 -0400
commit28426f53492c62e9f301cee9ac7ffafaba32d0da (patch)
tree97c640f3b491ac215d6ced180da231c6897a6a9a /guides/source
parent38fae35d53a029ee5b9c1192cb67ce2aa28f3904 (diff)
downloadrails-28426f53492c62e9f301cee9ac7ffafaba32d0da.tar.gz
rails-28426f53492c62e9f301cee9ac7ffafaba32d0da.tar.bz2
rails-28426f53492c62e9f301cee9ac7ffafaba32d0da.zip
Minor grammar fix in engines.md
Diffstat (limited to 'guides/source')
-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.