aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/deprecation
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2015-06-07 14:51:53 +0200
committerRobin Dupret <robin.dupret@gmail.com>2015-06-07 14:53:24 +0200
commit27eccc27cbe987be04bb97b49aff1d7fd118634c (patch)
tree9f3cfba2ffb773955ea288fa883418b6b0ef83de /activesupport/lib/active_support/deprecation
parentc429674f8625fccdc7c2a0e685f122de4531552c (diff)
downloadrails-27eccc27cbe987be04bb97b49aff1d7fd118634c.tar.gz
rails-27eccc27cbe987be04bb97b49aff1d7fd118634c.tar.bz2
rails-27eccc27cbe987be04bb97b49aff1d7fd118634c.zip
A few documentation tweaks [ci skip]
[Robin Dupret & Shunsuke Aida]
Diffstat (limited to 'activesupport/lib/active_support/deprecation')
-rw-r--r--activesupport/lib/active_support/deprecation/behaviors.rb6
-rw-r--r--activesupport/lib/active_support/deprecation/proxy_wrappers.rb2
2 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/deprecation/behaviors.rb b/activesupport/lib/active_support/deprecation/behaviors.rb
index 0cdc7e96f7..28d2d78643 100644
--- a/activesupport/lib/active_support/deprecation/behaviors.rb
+++ b/activesupport/lib/active_support/deprecation/behaviors.rb
@@ -39,8 +39,8 @@ module ActiveSupport
}
# Behavior module allows to determine how to display deprecation messages.
- # You can set any behaviors from +DEFAULT_BEHAVIORS+ constant or create
- # custom behavior. Available behaviors:
+ # You can create a custom behavior or set any from the +DEFAULT_BEHAVIORS+
+ # constant. Available behaviors are:
#
# [+raise+] Raise <tt>ActiveSupport::DeprecationException</tt>.
# [+stderr+] Log all deprecation warnings to +$stderr+.
@@ -49,7 +49,7 @@ module ActiveSupport
# [+silence+] Do nothing.
#
# Setting behaviors only affects deprecations that happen after boot time.
- # For more information you can read documentation for +behavior=+ method.
+ # For more information you can read the documentation of the +behavior=+ method.
module Behavior
# Whether to print a backtrace along with the warning.
attr_accessor :debug
diff --git a/activesupport/lib/active_support/deprecation/proxy_wrappers.rb b/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
index c6d2b5e795..9b264cbb79 100644
--- a/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
+++ b/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
@@ -127,7 +127,7 @@ module ActiveSupport
@deprecator = deprecator
end
- # Returns class of a new constant.
+ # Returns the class of the new constant.
#
# PLANETS_POST_2006 = %w(mercury venus earth mars jupiter saturn uranus neptune)
# PLANETS = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('PLANETS', 'PLANETS_POST_2006')