From 55d9fea8a2181f3f1c8bab65412ee0b1de76b6ba Mon Sep 17 00:00:00 2001 From: J Paterson Date: Tue, 21 Jan 2020 09:27:32 -0800 Subject: [PATCH] Fix typo in threading and code execution guide [ci skip] Closes #38276. --- guides/source/threading_and_code_execution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/threading_and_code_execution.md b/guides/source/threading_and_code_execution.md index d3a81fe6a8..064fe25378 100644 --- a/guides/source/threading_and_code_execution.md +++ b/guides/source/threading_and_code_execution.md @@ -176,7 +176,7 @@ The Rails framework components use these tools to manage their own concurrency needs too. `ActionDispatch::Executor` and `ActionDispatch::Reloader` are Rack middlewares -that wraps the request with a supplied Executor or Reloader, respectively. They +that wrap requests with a supplied Executor or Reloader, respectively. They are automatically included in the default application stack. The Reloader will ensure any arriving HTTP request is served with a freshly-loaded copy of the application if any code changes have occurred.