From 857c78c22bf97417b74b60cf08eb24ece546e26c Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 9 Oct 2025 12:37:18 +0100 Subject: [PATCH] Add doc lins to unicode packages --- core/unicode/doc.odin | 2 ++ core/unicode/utf16/utf16.odin | 1 + core/unicode/utf8/utf8.odin | 1 + 3 files changed, 4 insertions(+) create mode 100644 core/unicode/doc.odin diff --git a/core/unicode/doc.odin b/core/unicode/doc.odin new file mode 100644 index 000000000..4d9ff78f5 --- /dev/null +++ b/core/unicode/doc.odin @@ -0,0 +1,2 @@ +// package unicode provides data and procedures to test properties of Unicode code points +package unicode \ No newline at end of file diff --git a/core/unicode/utf16/utf16.odin b/core/unicode/utf16/utf16.odin index d3f98584b..75c553f62 100644 --- a/core/unicode/utf16/utf16.odin +++ b/core/unicode/utf16/utf16.odin @@ -1,3 +1,4 @@ +// package utf16 implements procedures and constants to support text-encoding in the UTF-16 character encoding package utf16 import "core:unicode/utf8" diff --git a/core/unicode/utf8/utf8.odin b/core/unicode/utf8/utf8.odin index 67f8a8be9..31bdb3491 100644 --- a/core/unicode/utf8/utf8.odin +++ b/core/unicode/utf8/utf8.odin @@ -1,3 +1,4 @@ +// package utf8 implements procedures and constants to support text-encoding in the UTF-8 character encoding package utf8 RUNE_ERROR :: '\ufffd'