From de0753d2ae351db834d8d476caeceafb044fa6f9 Mon Sep 17 00:00:00 2001 From: Mikel Lindsaar Date: Mon, 8 Feb 2010 15:08:10 +1100 Subject: Editing the railties/../railtie.rb and engine.rb docs --- railties/lib/rails/engine.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'railties/lib/rails/engine.rb') diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index 096bb9b934..2b9c4add4f 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -3,9 +3,8 @@ require 'rails/railtie' module Rails # Rails::Engine allows you to wrap a specific Rails application and share it accross - # different applications. Since Rails 3.0, your Rails::Application is nothing - # more than an Engine, thus your engines will behave much more closer to an application - # since then. + # different applications. Since Rails 3.0, every Rails::Application is nothing + # more than an Engine, allowing you to share it very easily. # # Any Rails::Engine is also a Rails::Railtie, so the same methods (like rake_tasks and # generators) and configuration available in the latter can also be used in the former. @@ -47,7 +46,7 @@ module Rails # # == Paths # - # Since Rails 3.0, both your Application and Engines does not have hardcoded paths. + # Since Rails 3.0, both your Application and Engines do not have hardcoded paths. # This means that you are not required to place your controllers at "app/controllers", # but in any place which you find convenient. # -- cgit v1.2.3