File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ This can result in surprising behavior if you use NumPy methods or
42
42
functions you have not explicitly tested.
43
43
44
44
On the other hand, compared to other interoperability approaches,
45
- subclassing can be a useful because many thing will "just work".
45
+ subclassing can be useful because many things will "just work".
46
46
47
47
This means that subclassing can be a convenient approach and for a long time
48
48
it was also often the only available approach.
@@ -227,7 +227,7 @@ like::
227
227
228
228
obj = ndarray.__new__(subtype, shape, ...
229
229
230
- where ``subdtype `` is the subclass. Thus the returned view is of the
230
+ where ``subtype `` is the subclass. Thus the returned view is of the
231
231
same class as the subclass, rather than being of class ``ndarray ``.
232
232
233
233
That solves the problem of returning views of the same type, but now
You can’t perform that action at this time.
0 commit comments