Skip to content

Commit 138a55c

Browse files
committed
Fix deprecation warning for macro onallthreads
1 parent 175f6e3 commit 138a55c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/onthreads.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export @onthreads
180180

181181
macro onallthreads(expr)
182182
quote
183-
Base.depwarn("`@onallthreads expr` is deprecated, use `@onallthreads allthreads() expr` instead.", nothing)
183+
Base.depwarn("`@onallthreads expr` is deprecated, use `@onthreads allthreads() expr` instead.", nothing)
184184
$(_thread_exec_func(:(ParallelProcessingTools.allthreads()), expr))
185185
end
186186
end

0 commit comments

Comments
 (0)