aboutsummaryrefslogtreecommitdiff
path: root/core/c
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 23:05:29 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 23:05:29 +0200
commit7a9ea3ee6d02d8eade6d7988498bd69716391563 (patch)
tree1a920e9550114cd2dc36d4c489bb65ea1f73542a /core/c
parent2bc409eab53bb7208ec59d431112489eb9d226db (diff)
Further overhaul of package line comments.
Diffstat (limited to 'core/c')
-rw-r--r--core/c/c.odin2
-rw-r--r--core/c/libc/doc.odin2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/c/c.odin b/core/c/c.odin
index c609cefd1..8266bf38a 100644
--- a/core/c/c.odin
+++ b/core/c/c.odin
@@ -1,4 +1,4 @@
-// package c just defines the basic types used by C programs.
+// Defines the basic types used by `C` programs for foreign function and data structure interop.
package c
import builtin "base:builtin"
diff --git a/core/c/libc/doc.odin b/core/c/libc/doc.odin
index 29fb40a30..856ee41c6 100644
--- a/core/c/libc/doc.odin
+++ b/core/c/libc/doc.odin
@@ -1,2 +1,2 @@
-// package libc declares the commonly used things in "libc" (C standard library).
+// Declares the commonly used things in `libc` (`C` standard library).
package libc