aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/deprecation
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-05-27 22:10:45 -0400
committerJon Moss <me@jonathanmoss.me>2016-05-27 22:10:45 -0400
commit3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316 (patch)
tree9b6454564e8800c1ef2df3742ac2fbc8cfc04b32 /activesupport/lib/active_support/deprecation
parent1c030578d6fddbe37c7e8a35db7bfb37278d349e (diff)
downloadrails-3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316.tar.gz
rails-3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316.tar.bz2
rails-3b1b957b6f1482ce260c8f4ecaad6e5b2bbd8316.zip
`behaviour` --> `behavior`
http://edgeguides.rubyonrails.org/api_documentation_guidelines.html#english
Diffstat (limited to 'activesupport/lib/active_support/deprecation')
-rw-r--r--activesupport/lib/active_support/deprecation/behaviors.rb2
1 files changed, 1 insertions, 1 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