aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/threading_and_code_execution.md
diff options
context:
space:
mode:
authorYauheni Dakuka <yauheni.dakuka@gmail.com>2018-01-09 09:29:49 +0300
committerYauheni Dakuka <yauheni.dakuka@gmail.com>2018-01-11 00:56:35 +0300
commit0ce768168610e97d4a726aa77aae748777e69465 (patch)
tree37879d0d6364809008c14f790b1b5c42358d1e8d /guides/source/threading_and_code_execution.md
parenta72473f0320cc58bea1b47c856c62f015d5da82b (diff)
downloadrails-0ce768168610e97d4a726aa77aae748777e69465.tar.gz
rails-0ce768168610e97d4a726aa77aae748777e69465.tar.bz2
rails-0ce768168610e97d4a726aa77aae748777e69465.zip
Fix typos [ci skip]
Diffstat (limited to 'guides/source/threading_and_code_execution.md')
-rw-r--r--guides/source/threading_and_code_execution.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/threading_and_code_execution.md b/guides/source/threading_and_code_execution.md
index 3d3d31b97e..e4febc7507 100644
--- a/guides/source/threading_and_code_execution.md
+++ b/guides/source/threading_and_code_execution.md
@@ -272,7 +272,7 @@ that promise is to put it as close as possible to the blocking call:
Rails.application.executor.wrap do
th = Thread.new do
Rails.application.executor.wrap do
- User # inner thread can acquire the load lock,
+ User # inner thread can acquire the 'load' lock,
# load User, and continue
end
end