From d49b6e508767266e135dc116f632087988bacbca Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Mon, 31 Dec 2018 17:35:09 -0600 Subject: [PATCH] Fix typo with missing bracket (#379) --- 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 68cab086a..63a4d4e31 100644 --- a/specs/simple-serialize.md +++ b/specs/simple-serialize.md @@ -449,7 +449,7 @@ Where the inner `hash_tree_root` is a recursive application of the tree-hashing Recursively tree hash the values in the container in the same order as the fields, and return the hash of the concatenation of the results. ```python -return hash(b''.join([hash_tree_root(getattr(x, field)) for field in value.fields)) +return hash(b''.join([hash_tree_root(getattr(x, field)) for field in value.fields])) ```