summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Barnowski <rossbar@berkeley.edu>2021-10-14 13:35:09 -0700
committerRoss Barnowski <rossbar@berkeley.edu>2021-10-14 13:35:09 -0700
commit707985360ac671006951b2d39dceef9ba6e38cae (patch)
tree65cbc6116263c1bcf64ae72a633b3321b11e417f
parentd03e7887e12f9e9041113658775ba8cc478d5c58 (diff)
downloadnumpy-707985360ac671006951b2d39dceef9ba6e38cae.tar.gz
Add missing indefinite article.
-rw-r--r--doc/source/user/absolute_beginners.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/absolute_beginners.rst b/doc/source/user/absolute_beginners.rst
index 7b9e33232..a98ca3e40 100644
--- a/doc/source/user/absolute_beginners.rst
+++ b/doc/source/user/absolute_beginners.rst
@@ -900,7 +900,7 @@ You can aggregate matrices the same way you aggregated vectors::
You can aggregate all the values in a matrix and you can aggregate them across
columns or rows using the ``axis`` parameter. To illustrate this point, let's
-look at slightly modified dataset::
+look at a slightly modified dataset::
>>> data = np.array([[1, 2], [5, 3], [4, 6]])
>>> data