From 46c6a433a64ebe4557e19aca36491bcc35f78e86 Mon Sep 17 00:00:00 2001 From: Roemer Blom Date: Sat, 14 Sep 2024 14:13:31 +0200 Subject: [PATCH] Added missing function call in example Feel like this is the real example you tried to give. --- notebooks/julia_async.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/julia_async.ipynb b/notebooks/julia_async.ipynb index d6a579e..f0b269b 100644 --- a/notebooks/julia_async.ipynb +++ b/notebooks/julia_async.ipynb @@ -484,7 +484,7 @@ "metadata": {}, "outputs": [], "source": [ - "fun = () -> a + b\n", + "fun = () -> add(a, b)\n", "t = Task(fun)\n", "schedule(t)" ]