diff options
author | Ross Barnowski <rossbar@berkeley.edu> | 2021-05-03 16:54:41 -0700 |
---|---|---|
committer | Ross Barnowski <rossbar@berkeley.edu> | 2021-05-03 16:54:41 -0700 |
commit | 2e38b8fc0b1d11e188ed7acc2b2c244bc9f858be (patch) | |
tree | 8b1e5b16f957b27642df74de80162be7ec68dddc /doc/source/reference | |
parent | 62e1c86bbb6ae322aaed3942170d11c13df36e18 (diff) | |
download | numpy-2e38b8fc0b1d11e188ed7acc2b2c244bc9f858be.tar.gz |
Grammatical fixups for ufuncs refguide.
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/ufuncs.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index 000c7da89..333e445d4 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -447,12 +447,12 @@ advanced usage and will not typically be used. Either a Dtype, a tuple of DTypes, or a special signature string indicating the input and output types of a ufunc. - This arguments allows to specify exact DTypes to be used for the + This argument allows the user to specify exact DTypes to be used for the calculation. Casting will be used as necessary and the input DType is not used unless ``signature`` is ``None`` for that input. When all DTypes are fixed, a specific loop is chosen or an error raised - if no matching loop does not exist. + if no matching loop exists. If some DTypes are not specified and left ``None``, the behaviour may depend on the ufunc. At this time, a list of available signatures is provided by the **types** |