authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-09-21 16:15:37+02:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-11-05 16:10:34+01:00
log1982e0c18a5d46a86ca411661a4d25039eb269e7
treec63870954f92ed1e79aa2d8fc92df5186448f678
parent0316ac959c1435eba4c63579feb0dced05fba366

Fix typo in documentation


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

lib/std/fmt.zig+1-1
...@@ -77,7 +77,7 @@ fn peekIsAlign(comptime fmt: []const u8) bool {...@@ -77,7 +77,7 @@ fn peekIsAlign(comptime fmt: []const u8) bool {
77/// - `b`: output integer value in binary notation77/// - `b`: output integer value in binary notation
78/// - `o`: output integer value in octal notation78/// - `o`: output integer value in octal notation
79/// - `c`: output integer as an ASCII character. Integer type must have 8 bits at max.79/// - `c`: output integer as an ASCII character. Integer type must have 8 bits at max.
80/// - `u`: output integer as an UTF-8 sequence. Integer type must have 32 bits at max.80/// - `u`: output integer as an UTF-8 sequence. Integer type must have 21 bits at max.
81/// - `*`: output the address of the value instead of the value itself.81/// - `*`: output the address of the value instead of the value itself.
82///82///
83/// If a formatted user type contains a function of the type83/// If a formatted user type contains a function of the type