diff options
| author | Andrew Gerrand <adg@golang.org> | 2015-09-01 17:51:39 +1000 |
|---|---|---|
| committer | Andrew Gerrand <adg@golang.org> | 2015-09-23 00:48:35 +0000 |
| commit | 143f3fd0ee71e6b015029b6792bc873b1013a8d4 (patch) | |
| tree | 818960b488d97c42a588fcbe1ba3cfe62181cec2 /src/encoding/json/decode_test.go | |
| parent | 7b7f85534cc8ed04ec727199c25119e157b2a4bc (diff) | |
| download | go-143f3fd0ee71e6b015029b6792bc873b1013a8d4.tar.xz | |
encoding/json: spell "marshaling" and "unmarshaling" consistently
Fixes #12431
Change-Id: I67c42bf2cd9285f471387248fd9c22a16b158349
Reviewed-on: https://go-review.googlesource.com/14150
Reviewed-by: Dmitri Shuralyov <shurcool@gmail.com>
Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/encoding/json/decode_test.go')
| -rw-r--r-- | src/encoding/json/decode_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/encoding/json/decode_test.go b/src/encoding/json/decode_test.go index 8c3b92b823..e9e00e5fca 100644 --- a/src/encoding/json/decode_test.go +++ b/src/encoding/json/decode_test.go @@ -1206,12 +1206,12 @@ func TestStringKind(t *testing.T) { data, err := Marshal(m1) if err != nil { - t.Errorf("Unexpected error marshalling: %v", err) + t.Errorf("Unexpected error marshaling: %v", err) } err = Unmarshal(data, &m2) if err != nil { - t.Errorf("Unexpected error unmarshalling: %v", err) + t.Errorf("Unexpected error unmarshaling: %v", err) } if !reflect.DeepEqual(m1, m2) { |
