From aa1b5ce0d79445e01dbd839669c18e1800872a1c Mon Sep 17 00:00:00 2001 From: Francesc Verdugo Date: Mon, 8 Sep 2025 10:25:20 +0200 Subject: [PATCH] Fix small explanation in Julia async --- notebooks/julia_async.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notebooks/julia_async.ipynb b/notebooks/julia_async.ipynb index 1b3c90b..6bbf0da 100644 --- a/notebooks/julia_async.ipynb +++ b/notebooks/julia_async.ipynb @@ -738,7 +738,8 @@ "\n", "- `put!` will wait for a `take!` if there is not space left in the channel's buffer.\n", "- `take!` will wait for a `put!` if there is no data to be consumed in the channel.\n", - "- Both `put!` and `take!` will raise an error if the channel is closed." + "- `put!` will raise an error if the channel is closed.\n", + "- `take!` will raise an error if the channel is closed *and* empty." ] }, {