1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

use American English: "favor" not "favour" [ci skip]

according to http://guides.rubyonrails.org/api_documentation_guidelines.html#english
This commit is contained in:
Yves Senn 2013-07-03 11:52:52 +02:00
parent f775a8456a
commit 33c61e3265
2 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@
*Carlos Antonio da Silva*
* Remove deprecated `Date#to_time_in_current_zone` in favour of `Date#in_time_zone`.
* Remove deprecated `Date#to_time_in_current_zone` in favor of `Date#in_time_zone`.
*Vipul A M*

View file

@ -240,11 +240,11 @@ Action Pack
In the example above, Posts controller will no longer automatically look up for a posts layout. If you need this functionality you could either remove `layout "application"` from `ApplicationController` or explicitly set it to `nil` in `PostsController`.
* Deprecated `ActionController::UnknownAction` in favour of `AbstractController::ActionNotFound`.
* Deprecated `ActionController::UnknownAction` in favor of `AbstractController::ActionNotFound`.
* Deprecated `ActionController::DoubleRenderError` in favour of `AbstractController::DoubleRenderError`.
* Deprecated `ActionController::DoubleRenderError` in favor of `AbstractController::DoubleRenderError`.
* Deprecated `method_missing` in favour of `action_missing` for missing actions.
* Deprecated `method_missing` in favor of `action_missing` for missing actions.
* Deprecated `ActionController#rescue_action`, `ActionController#initialize_template_class` and `ActionController#assign_shortcuts`.