From 782f4967f2dc4564575ca782fe2d04090b5faca8 Mon Sep 17 00:00:00 2001 From: Bill Q Date: Tue, 27 Jun 2017 02:16:45 +0300 Subject: [PATCH] correct misspell on spew/common.go#L183 --- spew/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spew/common.go b/spew/common.go index 7c519ff..1be8ce9 100644 --- a/spew/common.go +++ b/spew/common.go @@ -180,7 +180,7 @@ func printComplex(w io.Writer, c complex128, floatPrecision int) { w.Write(closeParenBytes) } -// printHexPtr outputs a uintptr formatted as hexidecimal with a leading '0x' +// printHexPtr outputs a uintptr formatted as hexadecimal with a leading '0x' // prefix to Writer w. func printHexPtr(w io.Writer, p uintptr) { // Null pointer.