summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-04-13 17:15:09 -0600
committerGitHub <noreply@github.com>2021-04-13 17:15:09 -0600
commit5d3d2f98086e48f938cbf81930d0fadfe9bca795 (patch)
treeb1757277f18a29d18647b1598a56ef6203548403 /doc
parent375363d41dd77a0f77e95f44347b0bbf0fe242fb (diff)
downloadnumpy-5d3d2f98086e48f938cbf81930d0fadfe9bca795.tar.gz
MAINT: Fix comma usage.
Diffstat (limited to 'doc')
-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 3ec95927b..0de08c3f0 100644
--- a/doc/source/user/absolute_beginners.rst
+++ b/doc/source/user/absolute_beginners.rst
@@ -68,7 +68,7 @@ To access NumPy and its functions import it in your Python code like this::
import numpy as np
We shorten the imported name to ``np`` for better readability of code using
-NumPy. This is a widely adopted convention that you should follow too, so that
+NumPy. This is a widely adopted convention that you should follow so that
anyone working with your code can easily understand it.
Reading the example code