aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorClaudi Martinez <claudix.kernel@gmail.com>2015-10-29 08:56:50 +0100
committerClaudi Martinez <claudix.kernel@gmail.com>2015-10-29 08:56:50 +0100
commit86030f24e95ef75859a4e89fc8da785ef14e1ff6 (patch)
treeed720c776feb6a501a89318cd42f24993b0b46a1 /guides/source
parent849e546bc98ca39fdf4edfe85a4e72327b155486 (diff)
downloadrails-86030f24e95ef75859a4e89fc8da785ef14e1ff6.tar.gz
rails-86030f24e95ef75859a4e89fc8da785ef14e1ff6.tar.bz2
rails-86030f24e95ef75859a4e89fc8da785ef14e1ff6.zip
Fixed typo
Diffstat (limited to 'guides/source')
-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 7f6021a5eb..ccbda7c712 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -243,7 +243,7 @@ WARNING: Due to the way Rails autoloads controllers, it could happen that the ma
application's `ApplicationController` were loaded before the engine's `ApplicationController`.
In such case, the Ruby interpreter would not load the latter class and your engine's
controllers would miss methods defined in it (because they would inherit from main
-`ApplicationController`. For this reason the code in engine's controllers must explicitly
+`ApplicationController`). For this reason the code in engine's controllers must explicitly
tell Ruby they depend on the right application controller. This can be achieved with
a single line at the top of the controllers files. For example: