From 47013f87e25225d8d2a95af2a9f308ab760c1d1b Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Mon, 14 Nov 2016 03:10:29 +0100 Subject: [PATCH] Fix minor typo in a comment. --- lslopt/lslbasefuncs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lslopt/lslbasefuncs.py b/lslopt/lslbasefuncs.py index fe9afe9..b3dcd2e 100644 --- a/lslopt/lslbasefuncs.py +++ b/lslopt/lslbasefuncs.py @@ -1708,7 +1708,7 @@ def llXorBase64(s, xor): Bug3763 = 3763 in Bugs # BUG-3763 consists of the binary string having an extra NULL every time after the second repetition of - # the XOR pattern. For example, if the XOR binary stirng is b'pqr' and the input string is + # the XOR pattern. For example, if the XOR binary string is b'pqr' and the input string is # b'12345678901234567890', the XOR binary string behaves as if it was b'pqrpqr\0pqr\0pqr\0pqr\0pq'. # We emulate that by adding the zero and increasing the length the first time. for c in s: