cosmetics changes

This commit is contained in:
andri lim 2019-10-25 18:32:20 +07:00 committed by zah
parent 9ec615f0ef
commit 25c2604b4b
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ func mulmod*(a, b, m: Stuint): Stuint =
result = mulmod_internal(a_m, b_m, m)
func powmod*[T](a, b, m: T): T =
func powmod*(a, b, m: Stuint): Stuint =
## Modular exponentiation
when nimvm: