From 66173b8ba3869b9c130627a3d45e1d9199a8dfe5 Mon Sep 17 00:00:00 2001 From: Piper Merriam Date: Wed, 20 Mar 2019 09:14:02 -0600 Subject: [PATCH] static > fixed --- 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 4fcefb86f..52bd52587 100644 --- a/specs/simple-serialize.md +++ b/specs/simple-serialize.md @@ -122,7 +122,7 @@ section_1_offsets = [ ] assert all(offset is None or offset < 2**32 for offset in section_1_offsets) -# The first section is the concatenation of the serialized static size elements and offsets +# The first section is the concatenation of the serialized fixed size elements and offsets section_1_parts = [ serialize(element) if is_fixed_size(element) else serialize(section_1_offsets[element_index])