From 88dff0604f37ad822449897f9385ffa43d6ce2af Mon Sep 17 00:00:00 2001 From: Brandon Conway Date: Wed, 17 Nov 2021 16:29:52 -0800 Subject: [PATCH] Improve language in upgrading guide --- guides/source/upgrading_ruby_on_rails.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index d246acee42..6b63584066 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -753,7 +753,7 @@ end while `Bar` could not be autoloaded, autoloading `Foo` would mark `Bar` as autoloaded too. This is not the case in `zeitwerk` mode, you need to move `Bar` to its own file `bar.rb`. One file, one constant. -This affects only to constants at the same top-level as in the example above. Inner classes and modules are fine. For example, consider +This only applies to constants at the same top-level as in the example above. Inner classes and modules are fine. For example, consider ```ruby # app/models/foo.rb