Fix log.zig example.

This commit is contained in:
purringChaos 2020-07-21 09:47:30 +01:00 committed by Veikka Tuominen
parent 4abf119d95
commit 094223d634

View file

@ -39,7 +39,7 @@ const root = @import("root");
//! // Print the message to stderr, silently ignoring any errors
//! const held = std.debug.getStderrMutex().acquire();
//! defer held.release();
//! const stderr = std.debug.getStderrStream();
//! const stderr = std.io.getStdErr().writer();
//! nosuspend stderr.print(prefix ++ format, args) catch return;
//! }
//!