From: Eli Bendersky Date: Fri, 25 Nov 2011 13:07:50 +0000 (+0200) Subject: fix some typos in Doc/c-api/memoryview.rst X-Git-Tag: v3.3.0a1~730^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a53f368e61a5535571362e36c451827ee7d3a27;p=python fix some typos in Doc/c-api/memoryview.rst --- diff --git a/Doc/c-api/memoryview.rst b/Doc/c-api/memoryview.rst index 34ecd12189..6b49cdf70a 100644 --- a/Doc/c-api/memoryview.rst +++ b/Doc/c-api/memoryview.rst @@ -17,7 +17,7 @@ any other object. Create a memoryview object from an object that provides the buffer interface. If *obj* supports writable buffer exports, the memoryview object will be - readable and writable, other it will be read-only. + readable and writable, otherwise it will be read-only. .. c:function:: PyObject *PyMemoryView_FromBuffer(Py_buffer *view) @@ -33,7 +33,7 @@ any other object. Create a memoryview object to a contiguous chunk of memory (in either 'C' or 'F'ortran *order*) from an object that defines the buffer interface. If memory is contiguous, the memoryview object points to the - original memory. Otherwise copy is made and the memoryview points to a + original memory. Otherwise, a copy is made and the memoryview points to a new bytes object.