From 12d53bfaad6f1706d8f940137f2512fb27a29d25 Mon Sep 17 00:00:00 2001 From: Youssef El Housni Date: Wed, 25 Sep 2024 14:30:30 -0400 Subject: [PATCH] fix: makes linter happy --- field/eisenstein/eisenstein.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/field/eisenstein/eisenstein.go b/field/eisenstein/eisenstein.go index eddb54994..54bfde8af 100644 --- a/field/eisenstein/eisenstein.go +++ b/field/eisenstein/eisenstein.go @@ -120,7 +120,7 @@ func (z *ComplexNumber) Quo(x, y *ComplexNumber) *ComplexNumber { return z } -// QuoRem sets z to the quotient of x and y, r to the remaind, and returns z and r. +// QuoRem sets z to the quotient of x and y, r to the remainder, and returns z and r. func (z *ComplexNumber) QuoRem(x, y, r *ComplexNumber) (*ComplexNumber, *ComplexNumber) { norm := y.Norm() if norm.Cmp(big.NewInt(0)) == 0 {