Around 15 examples of invoking zig build in the Zig Build System documentation cannot be used as there is a space missing after $ zig build and before the next parameter (option or subcommand).
Examples of this are:
$ zig build--summary all
and
$ zig buildrun --summary all
The cause for this is an error in the code introduced to handle build examples in the copy of doctest in the docgen repo. When the fix for that issue has been merged zig.build.zon of this project (ziglang.org) needs to be updated.
Around 15 examples of invoking `zig build` in the [Zig Build System](https://ziglang.org/learn/build-system/) documentation cannot be used as there is a space missing after `$ zig build` and before the next parameter (option or subcommand).
Examples of this are:
```$ zig build--summary all```
and
```$ zig buildrun --summary all```
The cause for this is an [error](https://codeberg.org/ziglang/docgen/issues/8) in the code introduced to handle build examples in the copy of `doctest` in the docgen repo. When the fix for that issue has been merged `zig.build.zon` of this project (ziglang.org) needs to be updated.