diff --git a/scripts/generate_bignum_tests.py b/scripts/generate_bignum_tests.py index 6a5a96afd..74ad934a8 100755 --- a/scripts/generate_bignum_tests.py +++ b/scripts/generate_bignum_tests.py @@ -236,7 +236,7 @@ class BignumGCD(BignumOperation): def __init__(self, val_a: str, val_b: str) -> None: super().__init__(val_a, val_b) - # We always expect as postivite result as the test data + # We always expect a positive result as the test data # does not contain zero. self._result = math.gcd(self.int_a, self.int_b)