Fixing code example, trace_ctx variable was renamed

`trace_ctx` should actually be `global_trace_ctx`, as declared on line 10
This commit is contained in:
Reshen
2025-12-09 11:43:55 -08:00
committed by GitHub
parent 45b4fb1565
commit 973d368c4c

View File

@@ -19,7 +19,7 @@ Example:
}
runtime.print_byte('\n')
ctx := &trace_ctx
ctx := &global_trace_ctx
if !trace.in_resolve(ctx) {
buf: [64]trace.Frame
runtime.print_string("Debug Trace:\n")
@@ -48,4 +48,4 @@ Example:
}
*/
package debug_trace
package debug_trace