diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-30 13:37:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-30 13:37:57 +0000 |
| commit | a70ff0b6fbdc4b023a1c5eb4dbbd17d9b4210371 (patch) | |
| tree | 2acee947ab4d03f787b910ba4a8fc777a727ca02 | |
| parent | a523463b7e385d6a9b4f9ca2fb5a7c8c05a80333 (diff) | |
| parent | cb98a83f77ca7a3eb0f43c013cdce1f8ee65deb5 (diff) | |
Merge pull request #6056 from d-us-vb/patch-1
Update letter.odin
| -rw-r--r-- | core/unicode/letter.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/unicode/letter.odin b/core/unicode/letter.odin index a1024dd6c..5191dd900 100644 --- a/core/unicode/letter.odin +++ b/core/unicode/letter.odin @@ -2,7 +2,7 @@ package unicode import "base:runtime" -MAX_RUNE :: '\U00010fff' // Maximum valid unicode code point +MAX_RUNE :: '\U0010ffff' // Maximum valid unicode code point REPLACEMENT_CHAR :: '\ufffd' // Represented an invalid code point MAX_ASCII :: '\u007f' // Maximum ASCII value MAX_LATIN1 :: '\u00ff' // Maximum Latin-1 value |