PR feedback: remove unnecessary newline

This commit is contained in:
Chih Cheng Liang 2019-01-24 15:57:50 +08:00
parent 5bb02a9d09
commit c2112f0bfc
No known key found for this signature in database
GPG Key ID: C86B5E6612B1487A
1 changed files with 1 additions and 2 deletions

View File

@ -331,10 +331,9 @@ Instantiate a container with the full set of deserialized data, matching each me
| Check to perform | code |
|:------------------------------------------|:----------------------------------------------------------------|
| ``rawbytes`` has enough left for length | ``len(rawbytes) > current_index + LENGTH_BYTES`` |
| ``rawbytes`` has enough left for length | ``len(rawbytes) > current_index + LENGTH_BYTES`` |
| list is not greater than serialized bytes | ``len(rawbytes) > current_index + LENGTH_BYTES + total_length`` |
To deserialize:
1. Get the list of the container's fields.