Skip to content

Commit

Permalink
Fixing name of mod builtin (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
marco6 committed Jul 18, 2023
1 parent 8a33432 commit 1c3ac63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/math/math.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var Module = &starlarkstruct.Module{
"copysign": newBinaryBuiltin("copysign", math.Copysign),
"fabs": newUnaryBuiltin("fabs", math.Abs),
"floor": starlark.NewBuiltin("floor", floor),
"mod": newBinaryBuiltin("round", math.Mod),
"mod": newBinaryBuiltin("mod", math.Mod),
"pow": newBinaryBuiltin("pow", math.Pow),
"remainder": newBinaryBuiltin("remainder", math.Remainder),
"round": newUnaryBuiltin("round", math.Round),
Expand Down

0 comments on commit 1c3ac63

Please sign in to comment.