diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-06-02 08:20:34 -0700 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2016-06-02 08:20:34 -0700 |
commit | b604dd0b81c44c3b4605f31e8f4b914fa7686b1a (patch) | |
tree | b54efa045b0f8f2d4a03ad6af9fd59c20d1fad20 /guides | |
parent | 1b8a7b8293e0ff944eb9a5ed84a17b51a87be696 (diff) | |
parent | 5413d40318dea6c4ee548303ace3dfba3e61e21f (diff) | |
download | rails-b604dd0b81c44c3b4605f31e8f4b914fa7686b1a.tar.gz rails-b604dd0b81c44c3b4605f31e8f4b914fa7686b1a.tar.bz2 rails-b604dd0b81c44c3b4605f31e8f4b914fa7686b1a.zip |
Merge pull request #25252 from felguerez/master
add missing "as" to Engines doc page [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/engines.md | 2 |
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. |