diff options
author | Alexander Kuhn-Regnier <ahf.kuhnregnier@gmail.com> | 2020-10-21 23:14:53 +0100 |
---|---|---|
committer | Alexander Kuhn-Regnier <ahf.kuhnregnier@gmail.com> | 2020-10-21 23:14:53 +0100 |
commit | 8bb56b7325beddb74ca08696bcc2d3c184047279 (patch) | |
tree | d67005e4fa512b898ea7ee3d0afc8b9ebfb11444 /doc/source | |
parent | 04934769d5d667404dd311256632618a13625e91 (diff) | |
download | numpy-8bb56b7325beddb74ca08696bcc2d3c184047279.tar.gz |
DOC: Fix typos (general documentation)
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/dev/development_workflow.rst | 2 | ||||
-rw-r--r-- | doc/source/user/basics.subclassing.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/dev/development_workflow.rst b/doc/source/dev/development_workflow.rst index 1665cfddb..34535b2f5 100644 --- a/doc/source/dev/development_workflow.rst +++ b/doc/source/dev/development_workflow.rst @@ -309,7 +309,7 @@ Rewriting commit history Do this only for your own feature branches. -There's an embarrassing typo in a commit you made? Or perhaps the you +There's an embarrassing typo in a commit you made? Or perhaps you made several false starts you would like the posterity not to see. This can be done via *interactive rebasing*. diff --git a/doc/source/user/basics.subclassing.rst b/doc/source/user/basics.subclassing.rst index d8d104220..8ffa31688 100644 --- a/doc/source/user/basics.subclassing.rst +++ b/doc/source/user/basics.subclassing.rst @@ -92,8 +92,8 @@ Implications for subclassing If we subclass ndarray, we need to deal not only with explicit construction of our array type, but also :ref:`view-casting` or -:ref:`new-from-template`. NumPy has the machinery to do this, and this -machinery that makes subclassing slightly non-standard. +:ref:`new-from-template`. NumPy has the machinery to do this, and it is +this machinery that makes subclassing slightly non-standard. There are two aspects to the machinery that ndarray uses to support views and new-from-template in subclasses. |