Update simple-serialize.md

This commit is contained in:
dankrad 2019-04-20 11:46:31 +01:00 committed by GitHub
parent 2017ce9614
commit 63bdf95e79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ The type `"null"` is only legal as one of several type in a `union` type.
* **union**: union type containing one of the given subtypes * **union**: union type containing one of the given subtypes
* round bracket notation `(type1, type2, ...)`, e.g. `("uint64", "null")` * round bracket notation `(type1, type2, ...)`, e.g. `("uint64", "null")`
We recursively define "variable-size" types to be lists and all types that contains a variable-size type. All other types are said to be "fixed-size". We recursively define "variable-size" types to be lists and unions and all types that contain a variable-size type. All other types are said to be "fixed-size".
### Aliases ### Aliases