Skip to content

Commit

Permalink
fix: makes linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
yelhousni committed Sep 25, 2024
1 parent 7febb56 commit 12d53bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion field/eisenstein/eisenstein.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 12d53bf

Please sign in to comment.