Fixed typo

This commit is contained in:
Mattia Giambirtone 2022-05-23 23:15:09 +02:00
parent de089098ad
commit 866519b1da
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ A peon bytecode file starts with the header, which is structured as follows:
### Line data section
The line data section contains information about each instruction in the code section and associatrs them
The line data section contains information about each instruction in the code section and associates them
1:1 with a line number in the original source file for easier debugging using run-length encoding. The section's
size is fixed and is encoded at the beginning as a sequence of 4 bytes (i.e. a single 32 bit integer). The data
in this section can be decoded as explained in [this file](../src/frontend/meta/bytecode.nim#L28), which is quoted