From c0d4334ced5216b002b65bd682a1f5ab8f65d43b Mon Sep 17 00:00:00 2001 From: NIC619 Date: Sat, 11 May 2019 15:12:11 +0800 Subject: [PATCH] Fix SSZ union type example --- specs/simple-serialize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/simple-serialize.md b/specs/simple-serialize.md index b4ea8135a..8633c7ed1 100644 --- a/specs/simple-serialize.md +++ b/specs/simple-serialize.md @@ -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