Browse Source

Add doc lins to unicode packages

gingerBill 4 days ago
parent
commit
857c78c22b
3 changed files with 4 additions and 0 deletions
  1. 2 0
      core/unicode/doc.odin
  2. 1 0
      core/unicode/utf16/utf16.odin
  3. 1 0
      core/unicode/utf8/utf8.odin

+ 2 - 0
core/unicode/doc.odin

@@ -0,0 +1,2 @@
+// package unicode provides data and procedures to test properties of Unicode code points
+package unicode

+ 1 - 0
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
 package utf16
 
 
 import "core:unicode/utf8"
 import "core:unicode/utf8"

+ 1 - 0
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
 package utf8
 
 
 RUNE_ERROR :: '\ufffd'
 RUNE_ERROR :: '\ufffd'