Skip to content

Commit 1c517a3

Browse files
JonathanAndersonViralBShah
authored andcommitted
Typo in Avoiding Deadlock in Pipelines section (#33160)
1 parent 0849742 commit 1c517a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/running-external-programs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ Another common solution is to separate the reader and writer of the pipeline int
315315
```julia
316316
writer = @async write(process, "data")
317317
reader = @async do_compute(read(process, String))
318-
wait(process)
318+
wait(writer)
319319
fetch(reader)
320320
```
321321

0 commit comments

Comments
 (0)