aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/deprecation
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2016-01-27 19:59:06 +0900
committeryui-knk <spiketeika@gmail.com>2016-01-27 19:59:06 +0900
commit10bc49710b7205a6172c3e072b3c77114fefd952 (patch)
tree2aac0a92e46d90d15d4833e013a24ffb47d7a36a /activesupport/lib/active_support/deprecation
parentf3cf476f8cb920bb83ad8c48321d138b0fa55464 (diff)
downloadrails-10bc49710b7205a6172c3e072b3c77114fefd952.tar.gz
rails-10bc49710b7205a6172c3e072b3c77114fefd952.tar.bz2
rails-10bc49710b7205a6172c3e072b3c77114fefd952.zip
[ci skip] Fix typo
Diffstat (limited to 'activesupport/lib/active_support/deprecation')
-rw-r--r--activesupport/lib/active_support/deprecation/proxy_wrappers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation/proxy_wrappers.rb b/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
index 6f0ad445fc..31e48e451a 100644
--- a/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
+++ b/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
@@ -118,7 +118,7 @@ module ActiveSupport
#
# PLANETS.map { |planet| planet.capitalize }
# # => DEPRECATION WARNING: PLANETS is deprecated! Use PLANETS_POST_2006 instead.
- # (Bactrace information…)
+ # (Backtrace information…)
# ["Mercury", "Venus", "Earth", "Mars", "Jupiter", "Saturn", "Uranus", "Neptune"]
class DeprecatedConstantProxy < DeprecationProxy
def initialize(old_const, new_const, deprecator = ActiveSupport::Deprecation.instance)