ulab: docs: Fix markup error

This commit is contained in:
Jeff Epler 2020-06-01 11:02:51 -05:00
parent 5061405eb3
commit 8af77cb91f
1 changed files with 1 additions and 1 deletions

View File

@ -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."""
...