diff --git a/tests/pyminisketch.py b/tests/pyminisketch.py index 7a9ea9c..7335334 100755 --- a/tests/pyminisketch.py +++ b/tests/pyminisketch.py @@ -285,7 +285,7 @@ def rec_split(poly, randv): # Try consecutive randomization factors randv, until one is found that factors poly. while True: # Compute the trace of (randv*x) mod poly. This is a polynomial that maps half of the - # domain to 0, and the other half to 1. Which half that is is controlled by randv. + # domain to 0, and the other half to 1. Which half that is, is controlled by randv. # By taking it modulo poly, we only add a multiple of poly. Thus the result has at least # the shared roots of the trace polynomial and poly still, but may have others. trace = poly_tracemod(poly, randv, gf)