aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.md
diff options
context:
space:
mode:
authorVishal Telangre <the@vishaltelangre.com>2019-05-11 11:34:40 +0530
committerVishal Telangre <the@vishaltelangre.com>2019-05-11 17:20:49 +0530
commit3a08b24272212c9c744606b1c543608b40f417fc (patch)
tree6d126fe599be613604d4402e71292f979446e45f /guides/source/upgrading_ruby_on_rails.md
parente84ee74854876be00c3d072182af4c936c7d303c (diff)
downloadrails-3a08b24272212c9c744606b1c543608b40f417fc.tar.gz
rails-3a08b24272212c9c744606b1c543608b40f417fc.tar.bz2
rails-3a08b24272212c9c744606b1c543608b40f417fc.zip
[ci skip] Fix confusing sentence in upgrade guide
Diffstat (limited to 'guides/source/upgrading_ruby_on_rails.md')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 290aabc6f9..181d57ceb2 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -319,7 +319,7 @@ By opting-out you optimize `$LOAD_PATH` lookups (less directories to check), and
#### Thread-safety
-In classic mode constant autoloading is not thread-safe, though Rails has locks in place for example to make web requests thread-safe when autoloading is enabled, as it is common in `development` mode.
+In classic mode, constant autoloading is not thread-safe, though Rails has locks in place for example to make web requests thread-safe when autoloading is enabled, as it is common in `development` mode.
Constant autoloading is thread-safe in `zeitwerk` mode. For example, you can now autoload in multi-threaded scripts executed by the `runner` command.