From 1e21fc7dc443a845794430ed0bdfbd788eb76472 Mon Sep 17 00:00:00 2001 From: Felix Conway Date: Wed, 30 Jul 2025 11:27:59 +0100 Subject: [PATCH] Fix spelling Signed-off-by: Felix Conway --- scripts/generate_bignum_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)