diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2016-02-23 08:04:58 +0000 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2016-02-23 08:04:58 +0000 |
commit | da2ad323fcae5c0105fac4c46a8af0e789ae53e7 (patch) | |
tree | 61dae09b161567321a27de90dff0b771b82c99e9 | |
parent | a51655578df2fb1cfe161887cc6414120d0cf8c5 (diff) | |
parent | 9497201b56ae16ff1fca1bba56753902b196f197 (diff) | |
download | numpy-da2ad323fcae5c0105fac4c46a8af0e789ae53e7.tar.gz |
Merge pull request #7313 from rehassachdeva/issue7303
DOC: corrected grammatical error in quickstart doc
-rw-r--r-- | doc/source/user/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/quickstart.rst b/doc/source/user/quickstart.rst index b636b5984..42b01c3d4 100644 --- a/doc/source/user/quickstart.rst +++ b/doc/source/user/quickstart.rst @@ -30,7 +30,7 @@ number of axes is *rank*. For example, the coordinates of a point in 3D space ``[1, 2, 1]`` is an array of rank 1, because it has one axis. That axis has a length of 3. -In example pictured below, the array has rank 2 (it is 2-dimensional). +In the example pictured below, the array has rank 2 (it is 2-dimensional). The first dimension (axis) has a length of 2, the second dimension has a length of 3. |