From ac8a44f6abdfc480d705253aabbea5cc44701718 Mon Sep 17 00:00:00 2001 From: LowkeyLoki-0 <121686626+MaartM@users.noreply.github.com> Date: Wed, 3 Sep 2025 15:59:17 +0200 Subject: [PATCH] Fix typo in julia_basics description of higher-order functions --- notebooks/julia_basics.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/julia_basics.ipynb b/notebooks/julia_basics.ipynb index 36a974b..ed49d10 100644 --- a/notebooks/julia_basics.ipynb +++ b/notebooks/julia_basics.ipynb @@ -874,7 +874,7 @@ "source": [ "### Higher-order functions\n", "\n", - "Higher order functions are functions that take and/or return other functions. And example is the `count` function in Julia.\n", + "Higher order functions are functions that take and/or return other functions. An example is the `count` function in Julia.\n", "\n", "For instance, we can pass a user-defined function to count the number of even elements in an array." ]