summaryrefslogtreecommitdiff
path: root/shared-bindings/ulab
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2020-06-01 11:02:51 -0500
committerJeff Epler <jepler@gmail.com>2020-06-01 11:02:51 -0500
commit8af77cb91fa848540e52740e9ed21b969be9cf4f (patch)
treee6ab68b7db6d3d6de2664a4b72a2a10ca5c14489 /shared-bindings/ulab
parent5061405eb3c231473cada799884285c5bd46f8ba (diff)
ulab: docs: Fix markup error
Diffstat (limited to 'shared-bindings/ulab')
-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 ea2f729aa..bf57e419c 100644
--- a/shared-bindings/ulab/vector/__init__.pyi
+++ b/shared-bindings/ulab/vector/__init__.pyi
@@ -112,7 +112,7 @@ 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.
- Wrap a Python function `f` so that it can be applied to arrays.
+ Wrap a Python function ``f`` so that it can be applied to arrays.
The callable must return only values of the types specified by otypes, or the result is undefined."""
...