Skip to content

Commit 48ae154

Browse files
authored
Fix typo in documentation (#44831)
1 parent 081ae64 commit 48ae154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/threadingconstructs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ bounded by a small constant multiple of the number of available worker threads
152152
iteration space. Thus, `@threads :dynamic for x in xs; f(x); end` is typically more
153153
efficient than `@sync for x in xs; @spawn f(x); end` if `length(xs)` is significantly
154154
larger than the number of the worker threads and the run-time of `f(x)` is relatively
155-
smaller than the cost of spawning and synchronizaing a task (typically less than 10
155+
smaller than the cost of spawning and synchronizing a task (typically less than 10
156156
microseconds).
157157
158158
!!! compat "Julia 1.8"

0 commit comments

Comments
 (0)