This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.
pubfnaddNamedWriteFiles(b: *Build, name: []constu8) *Step.WriteFile {
constgraph = b.graph;
constwf = Step.WriteFile.create(b);
constgop = b.named_writefiles.getOrPutValue(
graph.arena,
graph.dupeString(name),
wf,
) catch@panic("OOM");
if (gop.found_existing) {
panic(
"A WriteFile step with the name {q} has already been added to the package. Consider creating a private WriteFile step with std.Build.addWriteFiles",
.{name},
);
}
returnwf;
}