From ea33e050429be57430175694896de2365c9354e4 Mon Sep 17 00:00:00 2001
From: sunerok <justinvforvendetta@gmail.com>
Date: Tue, 13 Aug 2024 15:55:49 -0400
Subject: [PATCH] add comma for clarification of note

---
 tests/pyminisketch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)