aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-10-10 23:28:53 -0700
committerVijay Dev <vijaydev.cse@gmail.com>2011-10-10 23:28:53 -0700
commitb5f66cf7ebfafefc27ee8c62ce39fee4c044eee7 (patch)
tree8d951729d10fdf6e67f72cbdbfc99fb254a0e6fe
parentfcb70f364ccb087f672a85d4d18cc79736503a13 (diff)
parent16a0013d96e2078fc7b66f83fe46e8f0728fcb5c (diff)
downloadrails-b5f66cf7ebfafefc27ee8c62ce39fee4c044eee7.tar.gz
rails-b5f66cf7ebfafefc27ee8c62ce39fee4c044eee7.tar.bz2
rails-b5f66cf7ebfafefc27ee8c62ce39fee4c044eee7.zip
Merge pull request #3286 from rahul100885/rahul100885_workspace
Corrected typo
-rw-r--r--railties/guides/source/engines.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/engines.textile b/railties/guides/source/engines.textile
index db2db05e57..6be347e1a5 100644
--- a/railties/guides/source/engines.textile
+++ b/railties/guides/source/engines.textile
@@ -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.