From 6346cf0fba13900716162404fee4829aadb6a1a3 Mon Sep 17 00:00:00 2001 From: Tamer Tas Date: Wed, 22 Feb 2017 19:05:18 +0300 Subject: [PATCH] profiling/timing: rename big-int factorial function --- profiling/timing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiling/timing.md b/profiling/timing.md index 8de3ed1..2413a85 100644 --- a/profiling/timing.md +++ b/profiling/timing.md @@ -25,7 +25,7 @@ func Duration(invocation time.Time, name string) { ## Usage ```go -func IntFactorial(x big.Int) *big.Int { +func BigIntFactorial(x big.Int) *big.Int { defer profile.Duration(time.Now(), "IntFactorial") y := big.NewInt(1)