diff options
-rw-r--r-- | doc/release/upcoming_changes/21437.improvement.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/release/upcoming_changes/21437.improvement.rst b/doc/release/upcoming_changes/21437.improvement.rst index 8ad1c3303..291483b5f 100644 --- a/doc/release/upcoming_changes/21437.improvement.rst +++ b/doc/release/upcoming_changes/21437.improvement.rst @@ -21,7 +21,7 @@ be platform dependent. For example:: arr = np.full(100, value=1000, dtype=np.float64) arr.astype(np.int8) -May give a result equivalent to (the intermediat means no warning is given):: +May give a result equivalent to (the intermediate cast means no warning is given):: arr.astype(np.int64).astype(np.int8) |