1
0
mirror of https://github.com/golang/go synced 2024-11-18 19:44:46 -07:00

encoding/gob: add comma in field comment of userTypeInfo for consistency

This commit is contained in:
Jes Cok 2023-09-02 08:04:40 +08:00
parent 8b88d58042
commit a30615f373

View File

@ -24,7 +24,7 @@ type userTypeInfo struct {
base reflect.Type // the base type after all indirections
indir int // number of indirections to reach the base type
externalEnc int // xGob, xBinary, or xText
externalDec int // xGob, xBinary or xText
externalDec int // xGob, xBinary, or xText
encIndir int8 // number of indirections to reach the receiver type; may be negative
decIndir int8 // number of indirections to reach the receiver type; may be negative
}