mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Minor typo describing engine helpers
This commit is contained in:
parent
3789685221
commit
cb7677180b
1 changed files with 2 additions and 2 deletions
|
@ -296,7 +296,7 @@ module Rails
|
||||||
# helper MyEngine::SharedEngineHelper
|
# helper MyEngine::SharedEngineHelper
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# If you want to include all of the engine's helpers, you can use #helpers method on egine's
|
# If you want to include all of the engine's helpers, you can use #helpers method on an engine's
|
||||||
# instance:
|
# instance:
|
||||||
#
|
#
|
||||||
# class ApplicationController < ActionController::Base
|
# class ApplicationController < ActionController::Base
|
||||||
|
@ -305,7 +305,7 @@ module Rails
|
||||||
#
|
#
|
||||||
# It will include all of the helpers from engine's directory. Take into account that this does
|
# 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,
|
# not include helpers defined in controllers with helper_method or other similar solutions,
|
||||||
# only helpers defined in helpers directory will be included.
|
# only helpers defined in the helpers directory will be included.
|
||||||
#
|
#
|
||||||
# == Migrations & seed data
|
# == Migrations & seed data
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue