···1313// no official documentation for standard library features such
1414// as string formatting.
1515//
1616-// Therefore, the comments for the format() function are the only
1616+// Therefore, the comments for the print() function are the only
1717// way to definitively learn how to format strings in Zig:
1818//
1919-// https://codeberg.org/ziglang/zig/src/branch/master/lib/std/Io/Writer.zig#L537
1919+// https://ziglang.org/documentation/master/std/#std.Io.Writer.print
2020//
2121// Zig already has a very nice selection of formatting options.
2222// These can be used in different ways, but generally to convert
···5656// the placeholder will determine how the corresponding value,
5757// e.g. foo, is displayed.
5858//
5959-// And this is where it gets exciting, because format() accepts a
5959+// And this is where it gets exciting, because print() accepts a
6060// variety of formatting instructions. It's basically a tiny
6161// language of its own. Here's a numeric example:
6262//