diff options
author | RobertZK <technoguyrob@gmail.com> | 2015-02-10 22:29:28 -0600 |
---|---|---|
committer | RobertZK <technoguyrob@gmail.com> | 2015-02-10 22:29:28 -0600 |
commit | a7235192be6f1f60c5fd27b10095388ea327c598 (patch) | |
tree | 8eff4ecabd83900a6898b645280e702ed0311715 /railties | |
parent | 32cd45e7b255e94fc45842a3e48ce5b12a9b4bc1 (diff) | |
download | rails-a7235192be6f1f60c5fd27b10095388ea327c598.tar.gz rails-a7235192be6f1f60c5fd27b10095388ea327c598.tar.bz2 rails-a7235192be6f1f60c5fd27b10095388ea327c598.zip |
Fix some typos in railties/lib/rails/engine.rb [ci-skip]
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/engine.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index dc8785c1c1..e1d5caf790 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -217,7 +217,7 @@ module Rails # <tt>url_helpers</tt> from <tt>MyEngine::Engine.routes</tt>. # # The next thing that changes in isolated engines is the behavior of routes. Normally, when you namespace - # your controllers, you also need to do namespace all your routes. With an isolated engine, + # your controllers, you also need to namespace all your routes. With an isolated engine, # the namespace is applied by default, so you can ignore it in routes: # # MyEngine::Engine.routes.draw do @@ -296,7 +296,7 @@ module Rails # helper MyEngine::SharedEngineHelper # end # - # If you want to include all of the engine's helpers, you can use #helper method on an engine's + # If you want to include all of the engine's helpers, you can use the #helper method on an engine's # instance: # # class ApplicationController < ActionController::Base @@ -312,7 +312,7 @@ module Rails # Engines can have their own migrations. The default path for migrations is exactly the same # as in application: <tt>db/migrate</tt> # - # To use engine's migrations in application you can use rake task, which copies them to + # To use engine's migrations in application you can use the rake task below, which copies them to # application's dir: # # rake ENGINE_NAME:install:migrations @@ -328,7 +328,7 @@ module Rails # # == Loading priority # - # In order to change engine's priority you can use +config.railties_order+ in main application. + # In order to change engine's priority you can use +config.railties_order+ in the main application. # It will affect the priority of loading views, helpers, assets and all the other files # related to engine or application. # |