Browse Source

Add more doc lines

gingerBill 4 days ago
parent
commit
3e8f4e080c
2 changed files with 3 additions and 0 deletions
  1. 2 0
      core/bufio/doc.odin
  2. 1 0
      core/bytes/bytes.odin

+ 2 - 0
core/bufio/doc.odin

@@ -0,0 +1,2 @@
+// package bufio implements buffered I/O. It wraps an `io.Stream` interface to provide buffering.
+package bufio

+ 1 - 0
core/bytes/bytes.odin

@@ -1,3 +1,4 @@
+// package bytes implements procedures for manipulation of byte slices
 package bytes
 
 import "base:intrinsics"