Skip to content

Commit c19adbc

Browse files
authored
Merge pull request #590 from n0rbed/master
docs: writes to parameter passed to Out(), doesnt read from it
2 parents 33a6f14 + aab1c13 commit c19adbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ end
378378
# C = [1,2,3,4,5,6,7,8,9]
379379
```
380380

381-
In this example, the `sort!` function operates on array `X`, while the `copyto!` task reads from array `X` and reads from array `C`. By specifying dependencies using argument annotations, the tasks are executed in a controlled parallel manner, resulting in a sorted `C` array.
381+
In this example, the `sort!` function operates on array `X`, while the `copyto!` task reads from array `X` and writes to array `C`. By specifying dependencies using argument annotations, the tasks are executed in a controlled parallel manner, resulting in a sorted `C` array.
382382

383383
### Example without Datadeps
384384

0 commit comments

Comments
 (0)