Update simple-serialize.md

typo
This commit is contained in:
Alex Stokes 2019-05-06 17:36:55 -07:00 committed by GitHub
parent 5c2bca4a0d
commit 54fd822b55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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]