Skip to content

Commit ab6b880

Browse files
whyvlarmfazh
andauthored
Update math/gf4096/gf4096.go
Co-authored-by: Armando Faz <armfazh@users.noreply.github.com>
1 parent 93f7480 commit ab6b880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

math/gf4096/gf4096.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ func Inv(a Gf) Gf {
7878
}
7979

8080
// Div calculates a / b
81-
func Div(b, a Gf) Gf {
81+
func Div(a, b Gf) Gf {
8282
return Mul(Inv(b), a)
8383
}

0 commit comments

Comments
 (0)