fix spelling

This commit is contained in:
Jeff Epler 2020-06-01 09:16:55 -05:00
parent 9f7a874d02
commit 5061405eb3

View File

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