From: Mark Zavislak Date: Mon, 21 Apr 2014 15:55:23 +0000 (-0700) Subject: runtime: fix typo in error message X-Git-Tag: go1.3beta1~3 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=800d8adf35ebf340c8bc4769318531717aaab88e;p=gostls13.git runtime: fix typo in error message LGTM=robert.hencke, iant R=golang-codereviews, robert.hencke, iant CC=golang-codereviews https://golang.org/cl/89760043 --- diff --git a/src/pkg/runtime/malloc.goc b/src/pkg/runtime/malloc.goc index 6fee8932df..6371689a9c 100644 --- a/src/pkg/runtime/malloc.goc +++ b/src/pkg/runtime/malloc.goc @@ -684,7 +684,7 @@ runtime·persistentalloc(uintptr size, uintptr align, uint64 *stat) if(align != 0) { if(align&(align-1)) - runtime·throw("persistentalloc: align is now a power of 2"); + runtime·throw("persistentalloc: align is not a power of 2"); if(align > PageSize) runtime·throw("persistentalloc: align is too large"); } else