1
0
Fork 0
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:
Matthew Daubert 2011-05-22 21:17:38 -04:00
parent 3789685221
commit cb7677180b

View file

@ -296,7 +296,7 @@ module Rails
# helper MyEngine::SharedEngineHelper
# 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:
#
# 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
# 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
#