Skip to content

Commit 236c23b

Browse files
authored
docs: Fix a !!! note which was miscapitalized (#50474)
1 parent 2e0e3d5 commit 236c23b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/multi-threading.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ sum_multi_good (generic function with 1 method)
292292
julia> sum_multi_good(1:1_000_000)
293293
500000500000
294294
```
295-
!!! Note
295+
!!! note
296296
Buffers should not be managed based on `threadid()` i.e. `buffers = zeros(Threads.nthreads())` because concurrent tasks
297297
can yield, meaning multiple concurrent tasks may use the same buffer on a given thread, introducing risk of data races.
298298
Further, when more than one thread is available tasks may change thread at yield points, which is known as

0 commit comments

Comments
 (0)