diff options
| author | Airtz <72342006+Airtz@users.noreply.github.com> | 2025-06-16 12:22:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-16 12:22:03 +0200 |
| commit | fe7fbfedc018db3af943aff940909a94ccf43ffa (patch) | |
| tree | ee55913b6503961de1bd0978f3c4bf28d210a085 /src | |
| parent | 4281dc4999397ff8c5ff8d86b20c6a4f02adbb09 (diff) | |
Fix typo in `error_article_table` lookup
Diffstat (limited to 'src')
| -rw-r--r-- | src/error.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.cpp b/src/error.cpp index 1492b00c7..006d5ae8d 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -823,7 +823,7 @@ gb_internal int error_value_cmp(void const *a, void const *b) { gb_global String error_article_table[][2] = { {str_lit("a "), str_lit("bit_set literal")}, {str_lit("a "), str_lit("constant declaration")}, - {str_lit("a "), str_lit("dynamiic array literal")}, + {str_lit("a "), str_lit("dynamic array literal")}, {str_lit("a "), str_lit("map index")}, {str_lit("a "), str_lit("map literal")}, {str_lit("a "), str_lit("matrix literal")}, |