diff --git a/diff.go b/diff.go index 6aa7f74..f7e5034 100644 --- a/diff.go +++ b/diff.go @@ -92,7 +92,7 @@ func (w diffPrinter) diff(av, bv reflect.Value) { at := av.Type() bt := bv.Type() if at != bt { - w.printf("%v != %v", at, bt) + w.printf("%v (type %s) != %v (type %s)", at, at, bt, bt) return }