Skip to content

Commit

Permalink
Merge pull request #1056 from ethereum/ralexstokes-patch-1
Browse files Browse the repository at this point in the history
Update simple-serialize.md
  • Loading branch information
djrtwo authored May 7, 2019
2 parents 5c2bca4 + 54fd822 commit a9616b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/simple-serialize.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ return b"\x01" if value is True else b"\x00"
### Containers, vectors, lists

```python
# Reccursively serialize
# Recursively serialize
fixed_parts = [serialize(element) if not is_variable_size(element) else None for element in value]
variable_parts = [serialize(element) if is_variable_size(element) else b"" for element in value]

Expand Down

0 comments on commit a9616b0

Please sign in to comment.