aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/autoloading_and_reloading_constants.md
diff options
context:
space:
mode:
authorSantosh Wadghule <santosh.wadghule@gmail.com>2018-05-04 17:12:45 +0530
committerSantosh Wadghule <santosh.wadghule@gmail.com>2018-05-04 17:19:35 +0530
commit8831155f64fcccf76ab33a9f438c295b55547fd3 (patch)
treeee045183cfb823dfff867e9631022a040f0e0470 /guides/source/autoloading_and_reloading_constants.md
parent847342c25c61acaea988430dc3ab66a82e3ed486 (diff)
downloadrails-8831155f64fcccf76ab33a9f438c295b55547fd3.tar.gz
rails-8831155f64fcccf76ab33a9f438c295b55547fd3.tar.bz2
rails-8831155f64fcccf76ab33a9f438c295b55547fd3.zip
Remove confusion in the sentence [ci skip]
Diffstat (limited to 'guides/source/autoloading_and_reloading_constants.md')
-rw-r--r--guides/source/autoloading_and_reloading_constants.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/autoloading_and_reloading_constants.md b/guides/source/autoloading_and_reloading_constants.md
index 5428b16edc..ab411201e8 100644
--- a/guides/source/autoloading_and_reloading_constants.md
+++ b/guides/source/autoloading_and_reloading_constants.md
@@ -231,9 +231,9 @@ is not entirely equivalent to the one of the body of the definitions using the
assignment.
Thus, when one informally says "the `String` class", that really means: the
-class object stored in the constant called "String" in the class object stored
-in the `Object` constant. `String` is otherwise an ordinary Ruby constant and
-everything related to constants such as resolution algorithms applies to it.
+class object stored in the constant called "String" and this "String" constant
+gets stored in `Object` class. `String` is otherwise an ordinary Ruby constant
+and everything related to constants such as resolution algorithms applies to it.
Likewise, in the controller