Update specs/simple-serialize.md

Co-Authored-By: ChihChengLiang <chihchengliang@gmail.com>
This commit is contained in:
Hsiao-Wei Wang 2019-01-24 15:53:52 +08:00 committed by GitHub
parent 6ac5608d0b
commit 5bb02a9d09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ 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`` |