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.
pubconstLineNumberEntry = externstruct {
/// Offset to start of code bytes for line numberoffset: u32,
flags: Flags,
pubconstFlags = packedstruct(u32) {
/// Start line numberstart: u24,
/// Delta of lines to the end of the expression. Still unclear.// TODO figure out the point of this field.end: u7,
is_statement: bool,
};
}