Skip to content

Commit

Permalink
docstring changes
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenbauer committed Feb 29, 2024
1 parent 060a548 commit 7610f30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/macro.jl
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The policy of how many tasks to spawn and how to distribute the iteration space
tasks (and more) can be configured via `@set` statements in the loop body.
Supports reductions (`@set reducer=<reducer function>`) and collecting the results
(`@set collect=true`) similar to `map`.
(`@set collect=true`).
Under the hood, the `for` loop is translated into corresponding parallel
[`tforeach`](@ref), [`tmapreduce`](@ref), or [`tmap`](@ref) calls.
Expand Down Expand Up @@ -164,7 +164,7 @@ end
```julia
@tasks for i in 1:100
@set scheduler=DynamicScheduler(; nchunks=4*nthreads())
# non-uniform work...
end
```
"""
Expand Down

0 comments on commit 7610f30

Please sign in to comment.