diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-18 12:13:03 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-18 12:13:03 +0000 |
| commit | 625e17212d5e99a99ec5e35defa2ad0bb6a39a10 (patch) | |
| tree | 6a9824093389974ce38b73c12936afef0283df3a /core/unicode | |
| parent | 871cedc70173503d6cfec16d8533c3b3520b6afb (diff) | |
Correct 2 rune printing
Diffstat (limited to 'core/unicode')
| -rw-r--r-- | core/unicode/tools/generate_entity_table.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/unicode/tools/generate_entity_table.odin b/core/unicode/tools/generate_entity_table.odin index b5ee0d22d..9517b632b 100644 --- a/core/unicode/tools/generate_entity_table.odin +++ b/core/unicode/tools/generate_entity_table.odin @@ -86,7 +86,7 @@ generate_encoding_entity_table :: proc() { codepoint, codepoint2: int codepoint, _ = strconv.parse_int(r1) if r2 != "" { - codepoint2, _ = strconv.parse_int(r1) + codepoint2, _ = strconv.parse_int(r2) } desc, desc_ok := xml.find_child_by_ident(doc, id, "description") |