Fix minor typo in a comment.

This commit is contained in:
Sei Lisa 2016-11-14 03:10:29 +01:00
parent 25fe5d5f3e
commit 47013f87e2

View file

@ -1708,7 +1708,7 @@ def llXorBase64(s, xor):
Bug3763 = 3763 in Bugs Bug3763 = 3763 in Bugs
# BUG-3763 consists of the binary string having an extra NULL every time after the second repetition of # 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'. # 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. # We emulate that by adding the zero and increasing the length the first time.
for c in s: for c in s: