diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-12-02 21:42:48 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-12-02 21:42:48 -0200 |
commit | b42d4c407dcaf7ed1621d081aff1dcb1855b22e2 (patch) | |
tree | ec3cc523c97b802a33989ba64364cb72e7a2fcd1 /guides/source | |
parent | 5fdb594f7b95bcaf10930f30a651edab17932fa3 (diff) | |
download | rails-b42d4c407dcaf7ed1621d081aff1dcb1855b22e2.tar.gz rails-b42d4c407dcaf7ed1621d081aff1dcb1855b22e2.tar.bz2 rails-b42d4c407dcaf7ed1621d081aff1dcb1855b22e2.zip |
Remove note about removed local_constant_names method from guides [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_support_core_extensions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index 2c9cd0df0c..a83aee5d43 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -735,7 +735,7 @@ X.local_constants # => [:X1, :X2, :Y] X::Y.local_constants # => [:Y1, :X1] ``` -The names are returned as symbols. (The deprecated method `local_constant_names` returns strings.) +The names are returned as symbols. NOTE: Defined in `active_support/core_ext/module/introspection.rb`. |