diff options
| author | Bill Q <[email protected]> | 2017-06-27 02:16:45 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-06-27 02:16:45 +0300 |
| commit | 782f4967f2dc4564575ca782fe2d04090b5faca8 (patch) | |
| tree | 3807d440a8fbfc8764ce65f9bf77a39cfc60056e | |
| parent | 346938d642f2ec3594ed81d874461961cd0faa76 (diff) | |
correct misspell on spew/common.go#L183
| -rw-r--r-- | spew/common.go | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
