Skip to content

Commit 9848913

Browse files
committed
Update encode docss to include protobufs
1 parent fbfe209 commit 9848913

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

map.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ var _ json.Marshaler = Map(nil)
3131
//
3232
// 2. xerrors.Formatter is handled.
3333
//
34-
// 3. error and fmt.Stringer are handled.
34+
// 3. Protobufs are handled with json.Marshal.
3535
//
36-
// 4. slices and arrays are handled to go through the encode function for every value.
36+
// 4. error and fmt.Stringer are handled.
3737
//
38-
// 5. json.Marshal is invoked as the default case.
38+
// 5. slices and arrays are handled to go through the encode function for every value.
39+
//
40+
// 6. json.Marshal is invoked as the default case.
3941
func (m Map) MarshalJSON() ([]byte, error) {
4042
b := &bytes.Buffer{}
4143
b.WriteByte('{')

0 commit comments

Comments
 (0)