summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-30 20:44:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-05-30 20:44:39 (GMT)
commit31694ae4a5d3dfff1284077d064f0e1ce735929d (patch)
treeff7bab819f494d4d47d3777b4c3b89462787b546
parentc5a235bb55ebaeb09e42e7ba78b0f8bfe32fd490 (diff)
downloadcpython-31694ae4a5d3dfff1284077d064f0e1ce735929d.zip
cpython-31694ae4a5d3dfff1284077d064f0e1ce735929d.tar.gz
cpython-31694ae4a5d3dfff1284077d064f0e1ce735929d.tar.bz2
fix grammar
-rw-r--r--Doc/c-api/bytearray.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/bytearray.rst b/Doc/c-api/bytearray.rst
index 674a240..af5b5e3 100644
--- a/Doc/c-api/bytearray.rst
+++ b/Doc/c-api/bytearray.rst
@@ -43,7 +43,7 @@ Byte Array Objects
.. cfunction:: PyObject* PyByteArray_FromStringAndSize(const char *string, Py_ssize_t len)
- Create a new bytearray object from *string* and it's length, *len*. On
+ Create a new bytearray object from *string* and its length, *len*. On
failure, *NULL* is returned.