aboutsummaryrefslogtreecommitdiff
path: root/include/typdown.h
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-05-04 16:40:38 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-05-04 16:40:38 +0200
commit8dc9a978fc2b0d01c20270b1b690e815e74fdcc7 (patch)
tree477ac32bb4e2bf8bb7f0905333411ac96eb6077c /include/typdown.h
parent308c8893d9706318e8e756069f40c1435a70df91 (diff)
feat(lexer): error contains line
Diffstat (limited to 'include/typdown.h')
-rw-r--r--include/typdown.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/typdown.h b/include/typdown.h
index abf395d..e9d7f19 100644
--- a/include/typdown.h
+++ b/include/typdown.h
@@ -4,7 +4,7 @@
struct typdown_Error {
uint8_t code;
- struct {size_t beg; size_t end;} location;
+ struct {size_t beg; size_t end; size_t line;} location;
};
struct typdown_Document {