Skip to content

Commit 53ac783

Browse files
committed
docs/speed_python: Add article.
1 parent 2c883c5 commit 53ac783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/reference/speed_python.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ of slice it points too.
9999
100100
A ``memoryview`` can only be applied to objects supporting the buffer protocol - this
101101
includes arrays but not lists. Small caveat is that while memoryview object is live,
102-
it also keeps alive the original buffer object. So, memoryviews isn't universal
102+
it also keeps alive the original buffer object. So, a memoryview isn't a universal
103103
panacea. For instance, in the example above, if you are done with 10K buffer and
104104
just need those bytes 30:2000 from it, it may be better to make a slice, and let
105105
the 10K buffer go (be ready for garbage collection), instead of making a

0 commit comments

Comments
 (0)