diff options
author | Jon Moss <me@jonathanmoss.me> | 2016-05-27 22:10:45 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2016-05-27 22:10:45 -0400 |
commit | 3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316 (patch) | |
tree | 9b6454564e8800c1ef2df3742ac2fbc8cfc04b32 | |
parent | 1c030578d6fddbe37c7e8a35db7bfb37278d349e (diff) | |
download | rails-3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316.tar.gz rails-3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316.tar.bz2 rails-3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316.zip |
`behaviour` --> `behavior`
http://edgeguides.rubyonrails.org/api_documentation_guidelines.html#english
-rw-r--r-- | activesupport/lib/active_support/deprecation/behaviors.rb | 2 | ||||
-rw-r--r-- | railties/lib/rails/application/finisher.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/deprecation/behaviors.rb b/activesupport/lib/active_support/deprecation/behaviors.rb index dc24e2d0e1..35a9e5f8b8 100644 --- a/activesupport/lib/active_support/deprecation/behaviors.rb +++ b/activesupport/lib/active_support/deprecation/behaviors.rb @@ -2,7 +2,7 @@ require "active_support/notifications" module ActiveSupport # Raised when <tt>ActiveSupport::Deprecation::Behavior#behavior</tt> is set with <tt>:raise</tt>. - # You would set <tt>:raise</tt>, as a behaviour to raise errors and proactively report exceptions from deprecations. + # You would set <tt>:raise</tt>, as a behavior to raise errors and proactively report exceptions from deprecations. class DeprecationException < StandardError end diff --git a/railties/lib/rails/application/finisher.rb b/railties/lib/rails/application/finisher.rb index 0aed6c1351..4e24640510 100644 --- a/railties/lib/rails/application/finisher.rb +++ b/railties/lib/rails/application/finisher.rb @@ -95,7 +95,7 @@ module Rails elsif config.allow_concurrency == :unsafe # Do nothing, even if we know this is dangerous. This is the - # historical behaviour for true. + # historical behavior for true. else # Default concurrency setting: enabled, but safe |