diff options
-rw-r--r-- | Doc/c-api/bytearray.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/bytearray.rst b/Doc/c-api/bytearray.rst index 674a240a58..af5b5e358a 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. |