aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorPradyumna Shembekar <pradyumna2905@users.noreply.github.com>2018-04-27 23:00:56 -0700
committerGitHub <noreply@github.com>2018-04-27 23:00:56 -0700
commit678a1af2e353651ea080e04074f0b4387bbc6d47 (patch)
tree53b4e7ac0be40a6c0e1e1de887fcf152c6462f5c /guides
parentce58a64f19cf1b7d538f0e1d75fe1ddc7e68bf2e (diff)
downloadrails-678a1af2e353651ea080e04074f0b4387bbc6d47.tar.gz
rails-678a1af2e353651ea080e04074f0b4387bbc6d47.tar.bz2
rails-678a1af2e353651ea080e04074f0b4387bbc6d47.zip
[ci skip] Fix typo in testing.md
Diffstat (limited to 'guides')
-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.
```