From 6931a118236c09c83c39379b18734d58e165415f Mon Sep 17 00:00:00 2001 From: Humphrey Yang <39026988+HumphreyYang@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:25:49 +1100 Subject: [PATCH] Update lectures/numba.md Co-authored-by: mmcky --- lectures/numba.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/numba.md b/lectures/numba.md index c8c05d27..7b3a7e31 100644 --- a/lectures/numba.md +++ b/lectures/numba.md @@ -329,7 +329,7 @@ It suggests that Numba recompiles this function as the type changes. Overall, type inference helps Numba to achieve its performance, but it also limits what Numba supports as we have shown in the function example. -In fact, this limitation means that Numba does not support everything in Python and scientific libraries we learned before. +In fact, this limitation means that Numba does not support everything in Python and scientific libraries as we learned before. You can refer to the list of supported Python and Numpy features [here](https://numba.pydata.org/numba-doc/dev/reference/pysupported.html).