diff options
author | Kai Striega <kaistriega@gmail.com> | 2019-03-19 15:02:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-19 15:02:54 +0800 |
commit | 41e14f938587f95c2c0091c05b850bbd5b86354b (patch) | |
tree | ece35477a874b1cd6ebff6f35354f3d6d59b09b7 /numpy/doc/basics.py | |
parent | e3322b40d6e53a1f4efae9ce3c24f8f5cf58a190 (diff) | |
download | numpy-41e14f938587f95c2c0091c05b850bbd5b86354b.tar.gz |
DOC: Remove extra letter from docs
Diffstat (limited to 'numpy/doc/basics.py')
-rw-r--r-- | numpy/doc/basics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/basics.py b/numpy/doc/basics.py index 002682487..8f9044a0a 100644 --- a/numpy/doc/basics.py +++ b/numpy/doc/basics.py @@ -288,7 +288,7 @@ respectively :: >>> np.iinfo(np.int32) # Bounds of a 32-bit integer iinfo(min=-2147483648, max=2147483647, dtype=int32) >>> np.iinfo(np.int64) # Bounds of a 64-bit integer - iinfo(min=-9223372036854775808, max=9223372036854775807, dtype=int64)s + iinfo(min=-9223372036854775808, max=9223372036854775807, dtype=int64) If 64-bit integers are still too small the result may be cast to a floating point number. Floating point numbers offer a larger, but inexact, |