aboutsummaryrefslogtreecommitdiff
path: root/core/debug
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-10 12:24:28 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-10 12:24:28 +0200
commitece213afca742bb91e9328230fd21b6b94c85662 (patch)
treebd53a386f09c717dfb8c1af903e95599a22ca6a5 /core/debug
parent4068eeb5fae3981b34a5e5ae96e7c1b0c0eedc85 (diff)
Render examples.
Diffstat (limited to 'core/debug')
-rw-r--r--core/debug/pe/doc.odin2
-rw-r--r--core/debug/pe/pe.odin1
-rw-r--r--core/debug/trace/doc.odin7
3 files changed, 5 insertions, 5 deletions
diff --git a/core/debug/pe/doc.odin b/core/debug/pe/doc.odin
deleted file mode 100644
index 7590d328f..000000000
--- a/core/debug/pe/doc.odin
+++ /dev/null
@@ -1,2 +0,0 @@
-// A reader for the Windows `PE` executable format for debug purposes.
-package debug_pe \ No newline at end of file
diff --git a/core/debug/pe/pe.odin b/core/debug/pe/pe.odin
index 587c01e8e..d04ed5098 100644
--- a/core/debug/pe/pe.odin
+++ b/core/debug/pe/pe.odin
@@ -1,3 +1,4 @@
+// A reader for the Windows `PE` executable format for debug purposes.
package debug_pe
PE_SIGNATURE_OFFSET_INDEX_POS :: 0x3c
diff --git a/core/debug/trace/doc.odin b/core/debug/trace/doc.odin
index c9b715653..e5fd3f7c2 100644
--- a/core/debug/trace/doc.odin
+++ b/core/debug/trace/doc.odin
@@ -1,6 +1,6 @@
-// Stack trace library. Only works when debug symbols are enabled using `-debug`.
-package debug_trace
/*
+Stack trace library. Only works when debug symbols are enabled using `-debug`.
+
Example:
import "base:runtime"
import "core:debug/trace"
@@ -47,4 +47,5 @@ Example:
...
}
-*/ \ No newline at end of file
+*/
+package debug_trace \ No newline at end of file