From 690ac4071fa3e07113bf371c9e74394ab54d6749 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sun, 30 Jan 2022 20:11:47 -0500 Subject: all: remove trailing blank doc comment lines A future change to gofmt will rewrite // Doc comment. // func f() to // Doc comment. func f() Apply that change preemptively to all doc comments. For #51082. Change-Id: I4023e16cfb0729b64a8590f071cd92f17343081d Reviewed-on: https://go-review.googlesource.com/c/go/+/384259 Trust: Russ Cox Run-TryBot: Russ Cox Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot --- src/encoding/json/decode.go | 1 - src/encoding/json/encode.go | 1 - src/encoding/json/stream.go | 1 - 3 files changed, 3 deletions(-) (limited to 'src/encoding/json') diff --git a/src/encoding/json/decode.go b/src/encoding/json/decode.go index 555df0b7e8..ce9675a62f 100644 --- a/src/encoding/json/decode.go +++ b/src/encoding/json/decode.go @@ -92,7 +92,6 @@ import ( // invalid UTF-16 surrogate pairs are not treated as an error. // Instead, they are replaced by the Unicode replacement // character U+FFFD. -// func Unmarshal(data []byte, v any) error { // Check for well-formedness. // Avoids filling out half a data structure diff --git a/src/encoding/json/encode.go b/src/encoding/json/encode.go index 571ac094e2..fc865386ed 100644 --- a/src/encoding/json/encode.go +++ b/src/encoding/json/encode.go @@ -154,7 +154,6 @@ import ( // JSON cannot represent cyclic data structures and Marshal does not // handle them. Passing cyclic structures to Marshal will result in // an error. -// func Marshal(v any) ([]byte, error) { e := newEncodeState() diff --git a/src/encoding/json/stream.go b/src/encoding/json/stream.go index 6362170d5d..b278ee4013 100644 --- a/src/encoding/json/stream.go +++ b/src/encoding/json/stream.go @@ -287,7 +287,6 @@ var _ Unmarshaler = (*RawMessage)(nil) // Number, for JSON numbers // string, for JSON string literals // nil, for JSON null -// type Token any const ( -- cgit v1.3