mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Corrected typo
This commit is contained in:
parent
fcb70f364c
commit
16a0013d96
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ endprologue.
|
|||
|
||||
h3. What are engines?
|
||||
|
||||
Engines can be considered miniature applications that provide functionality to their host applications. A Rails application is actually just a "supercharged" engine, with the +Rails::Application+ class inheriting from +Rails::Engine+. Therefore, engines and applications share common functionality but are at the same time two separate beasts. Engines and applications also share a common structure, as you'll see througout this guide.
|
||||
Engines can be considered miniature applications that provide functionality to their host applications. A Rails application is actually just a "supercharged" engine, with the +Rails::Application+ class inheriting from +Rails::Engine+. Therefore, engines and applications share common functionality but are at the same time two separate beasts. Engines and applications also share a common structure, as you'll see throughout this guide.
|
||||
|
||||
Engines are also closely related to plugins where the two share a common +lib+ directory structure and are both generated using the +rails plugin new+ generator.
|
||||
|
||||
|
|
Loading…
Reference in a new issue