adds pointer to format string docs for debug.print

This commit is contained in:
Keith Turner 2025-10-10 21:45:00 -04:00
parent 66193e72d3
commit cc0a23e10b

View file

@ -288,7 +288,8 @@ pub fn unlockStderrWriter() void {
} }
/// Print to stderr, silently returning on failure. Intended for use in "printf /// 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 /// Uses a 64-byte buffer for formatted printing which is flushed before this
/// function returns. /// function returns.