From cc0a23e10b615a6ee013ea7fa0f9899108b1a406 Mon Sep 17 00:00:00 2001 From: Keith Turner Date: Fri, 10 Oct 2025 21:45:00 -0400 Subject: [PATCH] adds pointer to format string docs for debug.print --- lib/std/debug.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/std/debug.zig b/lib/std/debug.zig index a1753f1e77a2..e460c5c926eb 100644 --- a/lib/std/debug.zig +++ b/lib/std/debug.zig @@ -288,7 +288,8 @@ pub fn unlockStderrWriter() void { } /// Print to stderr, silently returning on failure. Intended for use in "printf -/// debugging". Use `std.log` functions for proper logging. +/// debugging". Use `std.log` functions for proper logging. See `Writer.print` +/// for format string documentation. /// /// Uses a 64-byte buffer for formatted printing which is flushed before this /// function returns.