diff options
author | Agbonze Osazuwa <geek_200@outlook.com> | 2020-12-01 04:46:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 04:46:39 +0100 |
commit | e4060c39675718ab3b19d02e23ef1644aeb9c6da (patch) | |
tree | 7f8326b0ae4aed73418a5f1149e27f443621c891 | |
parent | 33dc7bea24f1ab6c47047b49521e732caeb485d5 (diff) | |
download | numpy-e4060c39675718ab3b19d02e23ef1644aeb9c6da.tar.gz |
Correct sentence/statement composition
Incorrect statement spotted
*In the simplest example of broadcasting, the scalar ``b`` is stretched to become an array ~of with the same~ shape as ``a`` so the shapes are compatible for element-by-element multiplication.*
-rw-r--r-- | doc/source/user/theory.broadcasting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/theory.broadcasting.rst b/doc/source/user/theory.broadcasting.rst index b37edeacc..a82d78e6c 100644 --- a/doc/source/user/theory.broadcasting.rst +++ b/doc/source/user/theory.broadcasting.rst @@ -69,7 +69,7 @@ numpy on Windows 2000 with one million element arrays. *Figure 1* *In the simplest example of broadcasting, the scalar ``b`` is - stretched to become an array of with the same shape as ``a`` so the shapes + stretched to become an array of same shape as ``a`` so the shapes are compatible for element-by-element multiplication.* |