From e2d745a3a44fe1939caafea5bef6271fa4ef3db3 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Fri, 16 Mar 2018 09:09:42 -0700 Subject: [PATCH] spelling --- performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance.md b/performance.md index c2fc81b..b76fac4 100644 --- a/performance.md +++ b/performance.md @@ -849,7 +849,7 @@ allocate it. But you also pay every time the garbage collection runs. * rand.Int() and friends are 1) mutex protected and 2) expensive to create * consider alternate random number generation (go-pcgr, xorshift) * binary.Read and binary.Write use reflection and are slow; do it by hand. -* use strconv insted of fmt if possible +* use strconv instead of fmt if possible * ... ## Alternate implementations