From 15f44ab043b37c064d6891c7864205fed9fb0dd1 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 30 Aug 2016 10:47:49 -0700 Subject: =?UTF-8?q?Issue=20#27895:=20=20Spelling=20fixes=20(Contributed=20?= =?UTF-8?q?by=20Ville=20Skytt=C3=A4).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Modules/binascii.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Modules/binascii.c') diff --git a/Modules/binascii.c b/Modules/binascii.c index 50b09fe4f0..c3320cea2c 100644 --- a/Modules/binascii.c +++ b/Modules/binascii.c @@ -837,7 +837,7 @@ binascii_rledecode_hqx_impl(PyObject *module, Py_buffer *data) if (in_byte == RUNCHAR) { INBYTE(in_repeat); /* only 1 byte will be written, but 2 bytes were preallocated: - substract 1 byte to prevent overallocation */ + subtract 1 byte to prevent overallocation */ writer.min_size--; if (in_repeat != 0) { @@ -858,7 +858,7 @@ binascii_rledecode_hqx_impl(PyObject *module, Py_buffer *data) if (in_byte == RUNCHAR) { INBYTE(in_repeat); /* only 1 byte will be written, but 2 bytes were preallocated: - substract 1 byte to prevent overallocation */ + subtract 1 byte to prevent overallocation */ writer.min_size--; if ( in_repeat == 0 ) { -- cgit v1.2.1