diff options
| author | Andrew Chambers <[email protected]> | 2021-10-20 21:20:06 +1300 |
|---|---|---|
| committer | Andrew Chambers <[email protected]> | 2021-10-20 21:20:06 +1300 |
| commit | 1e9bf39a1b2c47920def55f29c4b9b93c402e1d4 (patch) | |
| tree | ec6711b59df064933fc5a8ed8212117f6efd5bb8 /main.c | |
| parent | fa0cbc1022fcacf76bf44e7e9eb2075b107f8a01 (diff) | |
Improve comments.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -294,13 +294,13 @@ assembleconstant(int64_t c, int nbytes) } } -/* The VarBytes type encodes a variadic number of bytes. +/* The VarBytes type encodes a variable number of bytes. The top byte is how many bytes we encode less 1. examples: <nothing> encodes as -1 0c encodes as 0x0000000c - 02 03 encodes as 0x01000203 + 02 03 encodes as 0x01000203 */ typedef int32_t VarBytes; |
