aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorWojciech Wnętrzak <w.wnetrzak@gmail.com>2011-11-10 18:52:39 +0100
committerWojciech Wnętrzak <w.wnetrzak@gmail.com>2011-11-10 18:52:39 +0100
commit9ce5d5155bc394fbd076203b14fbd8d83d10caf2 (patch)
treebf372307d9b275755fb4f14bc69f2fcfb595f9ad /railties
parentfd17ffc7a27c2fc5c3c2afb82c9e1909fd5ba7a1 (diff)
downloadrails-9ce5d5155bc394fbd076203b14fbd8d83d10caf2.tar.gz
rails-9ce5d5155bc394fbd076203b14fbd8d83d10caf2.tar.bz2
rails-9ce5d5155bc394fbd076203b14fbd8d83d10caf2.zip
fixed example code indentation
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/engine.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb
index 1c9627734e..d652c6b7fe 100644
--- a/railties/lib/rails/engine.rb
+++ b/railties/lib/rails/engine.rb
@@ -296,16 +296,16 @@ module Rails
# If you want to share just a few specific helpers you can add them to application's
# helpers in ApplicationController:
#
- # class ApplicationController < ActionController::Base
- # helper MyEngine::SharedEngineHelper
- # end
+ # class ApplicationController < ActionController::Base
+ # helper MyEngine::SharedEngineHelper
+ # end
#
# If you want to include all of the engine's helpers, you can use #helpers method on an engine's
# instance:
#
- # class ApplicationController < ActionController::Base
- # helper MyEngine::Engine.helpers
- # end
+ # class ApplicationController < ActionController::Base
+ # helper MyEngine::Engine.helpers
+ # end
#
# It will include all of the helpers from engine's directory. Take into account that this does
# not include helpers defined in controllers with helper_method or other similar solutions,