diff options
Diffstat (limited to 'serialize.fmt')
-rw-r--r-- | serialize.fmt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/serialize.fmt b/serialize.fmt index c157001..991c22b 100644 --- a/serialize.fmt +++ b/serialize.fmt @@ -128,7 +128,7 @@ map[[3]int16]*NodeMeta { PointedThing chk(writePointedThing(w, x)) -[]AOMsg { // For AOInitData.Msgs +[]AOMsg { // For AOInitData.Msgs. if len(x) > math.MaxUint8 { chk(ErrTooLong) } @@ -145,7 +145,7 @@ PointedThing chk(writePointedThing(w, x)) } } -[]NodeDef { // For ToCltNodeDefs.Defs +[]NodeDef { // For ToCltNodeDefs.Defs. if len(x) > math.MaxUint16 { chk(ErrTooLong) } |