From 153b0de4206773956d0402c880de2ff5254947e4 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Thu, 9 Oct 2025 15:18:23 +0200 Subject: [PATCH] Package lines for core:debug --- core/debug/trace/doc.odin | 7 +++---- core/dynlib/doc.odin | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/core/debug/trace/doc.odin b/core/debug/trace/doc.odin index e65548769..40f055161 100644 --- a/core/debug/trace/doc.odin +++ b/core/debug/trace/doc.odin @@ -1,6 +1,6 @@ +// package debug implements a stack trace library. Only works when debug symbols are enabled `-debug`. +package debug_trace /* -A debug stack trace library. Only works when debug symbols are enabled `-debug`. - Example: import "base:runtime" import "core:debug/trace" @@ -47,5 +47,4 @@ Example: ... } -*/ -package debug_trace \ No newline at end of file +*/ \ No newline at end of file diff --git a/core/dynlib/doc.odin b/core/dynlib/doc.odin index 487fcb715..6cb443092 100644 --- a/core/dynlib/doc.odin +++ b/core/dynlib/doc.odin @@ -1,5 +1,5 @@ /* -Package `core:dynlib` implements loading of shared libraries/DLLs and their symbols. +package dynlib implements loading of shared libraries/DLLs and their symbols. The behaviour of dynamically loaded libraries is specific to the target platform of the program. For in depth detail on the underlying behaviour please refer to your target platform's documentation.