Skip to content

Commit 062830f

Browse files
committed
stray comma
1 parent ee9f508 commit 062830f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solver/solver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func (r *repeatedRoot) Error() string { return "repeated roots" }
108108
func (r *repeatedRoot) RepeatedRoot() *big.Int { return (*big.Int)(r) }
109109

110110
// Roots solves for len(a)-1 roots of the polynomial with coefficients a (mod F).
111-
// Repeated roots are considered an error for the purposes of unique slot,
111+
// Repeated roots are considered an error for the purposes of unique slot
112112
// assignment, and an error with method RepeatedRoot() *big.Int is returned.
113113
func Roots(a []*big.Int, F *big.Int) ([]*big.Int, error) {
114114
roots, exps, err := RootFactors(a, F)

0 commit comments

Comments
 (0)