Merge pull request #1073 from NIC619/fix_ssz_union_example

Fix SSZ union type example
This commit is contained in:
dankrad 2019-05-11 11:40:53 +02:00 committed by GitHub
commit ef24b97190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@
* **list**: ordered variable-length homogeneous collection of values
* angle bracket notation `[type]`, e.g. `["uint64"]`
* **union**: union type containing one of the given subtypes
* round bracket notation `(type_1, type_2, ...)`, e.g. `("uint64", "null")`
* round bracket notation `(type_1, type_2, ...)`, e.g. `("null", "uint64")`
### Variable-size and fixed-size