aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAntonio Felguerez <felguerez@users.noreply.github.com>2016-06-02 11:16:31 -0400
committerAntonio Felguerez <felguerez@users.noreply.github.com>2016-06-02 11:16:31 -0400
commit5413d40318dea6c4ee548303ace3dfba3e61e21f (patch)
treeb54efa045b0f8f2d4a03ad6af9fd59c20d1fad20 /guides
parent1b8a7b8293e0ff944eb9a5ed84a17b51a87be696 (diff)
downloadrails-5413d40318dea6c4ee548303ace3dfba3e61e21f.tar.gz
rails-5413d40318dea6c4ee548303ace3dfba3e61e21f.tar.bz2
rails-5413d40318dea6c4ee548303ace3dfba3e61e21f.zip
add missing "as"
it reads a bit awkwardly without it.
Diffstat (limited to 'guides')
-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 eafac4828c..37580ec4d0 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -25,7 +25,7 @@ their host applications. A Rails application is actually just a "supercharged"
engine, with the `Rails::Application` class inheriting a lot of its behavior
from `Rails::Engine`.
-Therefore, engines and applications can be thought of almost the same thing,
+Therefore, engines and applications can be thought of as almost the same thing,
just with subtle differences, as you'll see throughout this guide. Engines and
applications also share a common structure.