aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2018-05-04 07:58:47 -0400
committerGitHub <noreply@github.com>2018-05-04 07:58:47 -0400
commitbd53f35e250b9e1559e5e971af0e2699d718c0f0 (patch)
tree6174c9172d88e169eb314a0977500cdc5a5aa575 /guides
parentf4bb51789a9fa23508367100e8d0a7df5cc8b161 (diff)
parent8831155f64fcccf76ab33a9f438c295b55547fd3 (diff)
downloadrails-bd53f35e250b9e1559e5e971af0e2699d718c0f0.tar.gz
rails-bd53f35e250b9e1559e5e971af0e2699d718c0f0.tar.bz2
rails-bd53f35e250b9e1559e5e971af0e2699d718c0f0.zip
Merge pull request #32818 from mechanicles/remove-sentence-confusion
Remove confusion in the sentence [ci skip]
Diffstat (limited to 'guides')
-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