diff options
| author | Gregor Hartmann <gregor@hartmann.pw> | 2025-12-19 15:46:02 +0100 |
|---|---|---|
| committer | Gregor Hartmann <gregor@hartmann.pw> | 2025-12-19 15:46:02 +0100 |
| commit | 0010cb2a68ce72cbc5267786a20435cf8e16f72a (patch) | |
| tree | 1c0688f13768fcb6e8ccd3ebaaa0db184db22fc5 | |
| parent | bb4e984a8e944c6937a47a293940b958fc93c925 (diff) | |
Update URL to, and function name of, fmt string documentation/comment
| -rw-r--r-- | exercises/099_formatting.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/099_formatting.zig b/exercises/099_formatting.zig index ef6b84e..7f42361 100644 --- a/exercises/099_formatting.zig +++ b/exercises/099_formatting.zig @@ -13,10 +13,10 @@ // no official documentation for standard library features such // as string formatting. // -// Therefore, the comments for the format() function are the only -// way to definitively learn how to format strings in Zig: +// Therefore, the comments for the std.Io.Writer.print() function are +// the only way to definitively learn how to format strings in Zig: // -// https://github.com/ziglang/zig/blob/master/lib/std/fmt.zig#L33 +// https://codeberg.org/ziglang/zig/src/branch/master/lib/std/Io/Writer.zig#L568 // // Zig already has a very nice selection of formatting options. // These can be used in different ways, but generally to convert |
