aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2019-05-11 14:34:46 +0200
committerGitHub <noreply@github.com>2019-05-11 14:34:46 +0200
commite8350663ad7c4bd9f8f724d0e82b2a48f5acfee4 (patch)
tree63ee227522d5a42621bcbcdd91820cf5c1b9932b /guides/source/upgrading_ruby_on_rails.md
parent79d61d33ce2db030b86a3f24406d3e60781eddf8 (diff)
parent3a08b24272212c9c744606b1c543608b40f417fc (diff)
downloadrails-e8350663ad7c4bd9f8f724d0e82b2a48f5acfee4.tar.gz
rails-e8350663ad7c4bd9f8f724d0e82b2a48f5acfee4.tar.bz2
rails-e8350663ad7c4bd9f8f724d0e82b2a48f5acfee4.zip
Merge pull request #36241 from vishaltelangre/fix-confusing-sentence-in-upgrade-guide
[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 48adbac367..76ee5c0c48 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.