authorgravatar for markfirmware@users.noreply.github.commarkfirmware <markfirmware@users.noreply.github.com> 2020-04-02 22:39:23-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-04-03 12:12:40-04:00
log203d6554b1e54e06aa28cbcfa74596911cd60b4c
treecabe1e19a361b94ee012f5b2db53bd62cdab41b4
parent08a9ab4d8c7f1baeb6169088284c06fb2b9707ce

Update fmt.zig


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/fmt.zig+1-1
...@@ -69,7 +69,7 @@ fn peekIsAlign(comptime fmt: []const u8) bool {...@@ -69,7 +69,7 @@ fn peekIsAlign(comptime fmt: []const u8) bool {
69///69///
70/// If a formatted user type contains a function of the type70/// If a formatted user type contains a function of the type
71/// ```71/// ```
72/// fn format(value: ?, comptime fmt: []const u8, options: std.fmt.FormatOptions, out_stream: var) !void72/// pub fn format(value: ?, comptime fmt: []const u8, options: std.fmt.FormatOptions, out_stream: var) !void
73/// ```73/// ```
74/// with `?` being the type formatted, this function will be called instead of the default implementation.74/// with `?` being the type formatted, this function will be called instead of the default implementation.
75/// This allows user types to be formatted in a logical manner instead of dumping all fields of the type.75/// This allows user types to be formatted in a logical manner instead of dumping all fields of the type.