aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Tange <tange@axini.com>2012-11-20 15:39:21 +0100
committerLennart Tange <tange@axini.com>2012-11-20 15:39:21 +0100
commit58594331565d7e241f63a3cc6562e4a99a5077e8 (patch)
treef17a758137c7cf4bcbd22437bac24e93426cda42
parentceb1fd34a8b1c6d415bf517e7752c059a3ab386d (diff)
downloadrails-58594331565d7e241f63a3cc6562e4a99a5077e8.tar.gz
rails-58594331565d7e241f63a3cc6562e4a99a5077e8.tar.bz2
rails-58594331565d7e241f63a3cc6562e4a99a5077e8.zip
fixed a minor spelling error
-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 f9bbff1c4c..d8f5796dde 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -699,7 +699,7 @@ This section explains how to add and/or override engine MVC functionality in the
### Overriding Models and Controllers
-Engine model and controller classes can be extended by open classing them in the main Rails application (since model and controller classes are just Ruby classes that inherit Rails specific functionality). Open classing an Engine class redefines it for use in the main applicaiton. This is usually implemented by using the decorator pattern.
+Engine model and controller classes can be extended by open classing them in the main Rails application (since model and controller classes are just Ruby classes that inherit Rails specific functionality). Open classing an Engine class redefines it for use in the main application. This is usually implemented by using the decorator pattern.
For simple class modifications use `Class#class_eval`, and for complex class modifications, consider using `ActiveSupport::Concern`.