Skip to content

Commit 0d64e2b

Browse files
stestaggcmaloney
andauthored
Update Objects/bytearrayobject.c
Fix capitalization in comment Co-authored-by: Cody Maloney <cmaloney@users.noreply.github.com>
1 parent 6f73d57 commit 0d64e2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/bytearrayobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ bytearray_resize_lock_held(PyObject *self, Py_ssize_t requested_size)
239239
return -1;
240240
}
241241

242-
/* resize to 0 resets to empty bytes (see issue #153419)*/
242+
/* Resize to 0 resets to empty bytes (see issue #153419). */
243243
if (requested_size == 0) {
244244
Py_SETREF(obj->ob_bytes_object,
245245
Py_GetConstant(Py_CONSTANT_EMPTY_BYTES));

0 commit comments

Comments
 (0)