summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spew/common.go2
-rw-r--r--spew/dump_test.go2
-rw-r--r--spew/example_test.go4
-rw-r--r--spew/spew.go2
4 files changed, 5 insertions, 5 deletions
diff --git a/spew/common.go b/spew/common.go
index 0704831..30fb450 100644
--- a/spew/common.go
+++ b/spew/common.go
@@ -102,7 +102,7 @@ var (
// hexDigits is used to map a decimal value to a hex digit.
var hexDigits = "0123456789abcdef"
-// unpackValue returns values inside of non-nil inteferfaces when possible.
+// unpackValue returns values inside of non-nil interfaces when possible.
// This is useful for data types like structs, arrays, slices, and maps which
// can contain varying types packed inside an interface.
func unpackValue(v reflect.Value) reflect.Value {
diff --git a/spew/dump_test.go b/spew/dump_test.go
index 8024fe4..b0e795f 100644
--- a/spew/dump_test.go
+++ b/spew/dump_test.go
@@ -632,7 +632,7 @@ func addFuncDumpTests() {
var v3 = func(i int, s string) (b bool, err error) {
return true, nil
}
- nv3 := (*func(int, string)(bool, error))(nil)
+ nv3 := (*func(int, string) (bool, error))(nil)
pv3 := &v3
v3Addr := fmt.Sprintf("%p", pv3)
pv3Addr := fmt.Sprintf("%p", &pv3)
diff --git a/spew/example_test.go b/spew/example_test.go
index 2a35010..7a60202 100644
--- a/spew/example_test.go
+++ b/spew/example_test.go
@@ -160,7 +160,7 @@ func ExampleSpewState_Dump() {
// example.
// A SpewState does not need initialization.
- ss := new(spew.SpewState) // or var ss spew.SpewState
+ ss := new(spew.SpewState) // or var ss spew.SpewState
ss2 := new(spew.SpewState) // or var ss2 spew.SpewState
// Modify the indent level of the first SpewState only.
@@ -204,7 +204,7 @@ func ExampleSpewState_Printf() {
// example.
// A SpewState does not need initialization.
- ss := new(spew.SpewState) // or var ss spew.SpewState
+ ss := new(spew.SpewState) // or var ss spew.SpewState
ss2 := new(spew.SpewState) // or var ss2 spew.SpewState
// Modify the method handling of the first SpewState only.
diff --git a/spew/spew.go b/spew/spew.go
index d106f95..0622cde 100644
--- a/spew/spew.go
+++ b/spew/spew.go
@@ -123,7 +123,7 @@ func convertArgs(args []interface{}) (formatters []interface{}) {
// just declaring a SpewState variable, is sufficient to initialilize a
// SpewState using the default configuration options.
type SpewState struct {
- cs *ConfigState
+ cs *ConfigState
}
// Config returns a pointer to the active ConfigState for the SpewState