Skip to content

Commit

Permalink
Fix typo in documentation (#44831)
Browse files Browse the repository at this point in the history
  • Loading branch information
plessl authored Apr 1, 2022
1 parent 081ae64 commit 48ae154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/threadingconstructs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ bounded by a small constant multiple of the number of available worker threads
iteration space. Thus, `@threads :dynamic for x in xs; f(x); end` is typically more
efficient than `@sync for x in xs; @spawn f(x); end` if `length(xs)` is significantly
larger than the number of the worker threads and the run-time of `f(x)` is relatively
smaller than the cost of spawning and synchronizaing a task (typically less than 10
smaller than the cost of spawning and synchronizing a task (typically less than 10
microseconds).
!!! compat "Julia 1.8"
Expand Down

0 comments on commit 48ae154

Please sign in to comment.