summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2020-06-01 09:16:55 -0500
committerJeff Epler <jepler@gmail.com>2020-06-01 09:16:55 -0500
commit5061405eb3c231473cada799884285c5bd46f8ba (patch)
treeda205d390c3844b00f7346e5166d26562a706cde
parent9f7a874d029afd5b44f5fbcfa05209184d298513 (diff)
fix spelling
-rw-r--r--shared-bindings/ulab/vector/__init__.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/ulab/vector/__init__.pyi b/shared-bindings/ulab/vector/__init__.pyi
index 0e590f3c8..ea2f729aa 100644
--- a/shared-bindings/ulab/vector/__init__.pyi
+++ b/shared-bindings/ulab/vector/__init__.pyi
@@ -107,7 +107,7 @@ def tanh():
"""Computes the hyperbolic tangent"""
...
-def vectorise(f, *, otypes=None):
+def vectorize(f, *, otypes=None):
"""
:param callable f: The function to wrap
:param otypes: List of array types that may be returned by the function. None is intepreted to mean the return value is float.