Fix spelling

Signed-off-by: Felix Conway <[email protected]>
This commit is contained in:
Felix Conway
2025-07-30 13:12:47 +01:00
parent 8c81b9f8dd
commit 1e21fc7dc4
+1 -1
View File
@@ -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)