From: Georg Brandl <georg@python.org>
Date: Sat, 4 Dec 2010 17:09:30 +0000 (+0000)
Subject: Fix typo.
X-Git-Tag: v3.2b1~35
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3fa5685e85f7aa21c124bb6a71a076f80666f2c;p=python

Fix typo.
---

diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c
index 32b8bb574b..ac67d0b1b6 100644
--- a/Objects/bytearrayobject.c
+++ b/Objects/bytearrayobject.c
@@ -589,7 +589,7 @@ bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *valu
         needed = 0;
     }
     else if (values == (PyObject *)self || !PyByteArray_Check(values)) {
-        /* Make a copy an call this function recursively */
+        /* Make a copy and call this function recursively */
         int err;
         values = PyByteArray_FromObject(values);
         if (values == NULL)