aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2018-04-28 11:59:49 +0530
committerGitHub <noreply@github.com>2018-04-28 11:59:49 +0530
commit276fe661098619239ac90c110b06d72b3fc77b5c (patch)
tree53b4e7ac0be40a6c0e1e1de887fcf152c6462f5c
parentce58a64f19cf1b7d538f0e1d75fe1ddc7e68bf2e (diff)
parent678a1af2e353651ea080e04074f0b4387bbc6d47 (diff)
downloadrails-276fe661098619239ac90c110b06d72b3fc77b5c.tar.gz
rails-276fe661098619239ac90c110b06d72b3fc77b5c.tar.bz2
rails-276fe661098619239ac90c110b06d72b3fc77b5c.zip
Merge pull request #32745 from pradyumna2905/patch-2
[ci skip] Fix a typo in testing.md
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 9fd29672c7..3973cf1d23 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -504,7 +504,7 @@ Two hooks are provided, one runs when the process is forked, and one runs before
These can be useful if your app uses multiple databases or perform other tasks that depend on the number of
workers.
-The `parallelize_setup` method is called right after the processes are forked. The `parallelize_teardown` metod
+The `parallelize_setup` method is called right after the processes are forked. The `parallelize_teardown` method
is called right before the processes are closed.
```