From 67141a986a337f6cee81b64d95d1141abb498dda Mon Sep 17 00:00:00 2001 From: Dean MacGregor Date: Tue, 13 Feb 2024 16:24:02 -0500 Subject: [PATCH] lowercase --- docs/user-guide/expressions/numpy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/expressions/numpy.md b/docs/user-guide/expressions/numpy.md index 2a16cab7e917..97b8a1b241e6 100644 --- a/docs/user-guide/expressions/numpy.md +++ b/docs/user-guide/expressions/numpy.md @@ -15,7 +15,7 @@ This means that if a function is not provided by Polars, we can use NumPy and we ## Numba -[NumBa](https://numba.pydata.org/) is an open source JIT compiler that allows you to create your own ufuncs entirely within python. The key is to use the [@guvectorize](https://numba.readthedocs.io/en/stable/user/vectorize.html#the-guvectorize-decorator) decorator. One popular use case is conditional cumulative functions. For example, suppose you want to take a cumulative sum but have it reset whenever it gets to a threshold. +[Numba](https://numba.pydata.org/) is an open source JIT compiler that allows you to create your own ufuncs entirely within python. The key is to use the [@guvectorize](https://numba.readthedocs.io/en/stable/user/vectorize.html#the-guvectorize-decorator) decorator. One popular use case is conditional cumulative functions. For example, suppose you want to take a cumulative sum but have it reset whenever it gets to a threshold. ### Example