aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--guides/source/engines.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index 5065aab6b7..84017d5e13 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -890,7 +890,9 @@ engine this would be done by changing
`app/controllers/blorgh/application_controller.rb` to look like:
```ruby
-class Blorgh::ApplicationController < ::ApplicationController
+module Blorgh
+ class ApplicationController < ::ApplicationController
+ end
end
```