aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/engines.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-02-21 11:24:56 +0100
committerYves Senn <yves.senn@gmail.com>2015-02-21 11:24:56 +0100
commit661479324d573d419d8e15a1ea257e01856084af (patch)
tree820144dc4ca87110c17a6d1bb10142e7d6e5b469 /guides/source/engines.md
parent43fb8182663be99418b346f5aa43b0fa1ac95ce4 (diff)
downloadrails-661479324d573d419d8e15a1ea257e01856084af.tar.gz
rails-661479324d573d419d8e15a1ea257e01856084af.tar.bz2
rails-661479324d573d419d8e15a1ea257e01856084af.zip
guides, fully qualify `ApplicationController`. Closes #19024.
Diffstat (limited to 'guides/source/engines.md')
-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 6eb558885f..5065aab6b7 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -890,7 +890,7 @@ engine this would be done by changing
`app/controllers/blorgh/application_controller.rb` to look like:
```ruby
-class Blorgh::ApplicationController < ApplicationController
+class Blorgh::ApplicationController < ::ApplicationController
end
```