From 25c2604b4b41d1b13f4a2740486507fe5f63086e Mon Sep 17 00:00:00 2001 From: andri lim Date: Fri, 25 Oct 2019 18:32:20 +0700 Subject: [PATCH] cosmetics changes --- stint/modular_arithmetic.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stint/modular_arithmetic.nim b/stint/modular_arithmetic.nim index a7c9d30..09ead0d 100644 --- a/stint/modular_arithmetic.nim +++ b/stint/modular_arithmetic.nim @@ -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: