From a8d3b68b41c26f50e2975396c1c8810b6147e04b Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Wed, 13 Sep 2023 09:48:56 +1200 Subject: [PATCH] [docs] fix warning block --- docs/src/tutorials/algorithms/parallelism.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/algorithms/parallelism.md b/docs/src/tutorials/algorithms/parallelism.md index f7ee39a2e3e..2af638522cf 100644 --- a/docs/src/tutorials/algorithms/parallelism.md +++ b/docs/src/tutorials/algorithms/parallelism.md @@ -74,7 +74,7 @@ julia> ids 3 ```` -!!! warn +!!! warning When working with threads, you need to avoid race conditions, in which two threads attempt to write to the same variable at the same time. In the above example we avoided a race condition by using `ReentrantLock`. See the