diff --git a/src/lib.zig b/src/lib.zig index 3d6f175..dfca346 100644 --- a/src/lib.zig +++ b/src/lib.zig @@ -4,8 +4,15 @@ pub const Arg = @import("Arg.zig"); pub const arg_matches = @import("arg_matches.zig"); pub const ArgMatches = arg_matches.ArgMatches; pub const Command = @import("Command.zig"); -pub const YazapError = @import("error.zig").YazapError; +pub const yazap_error = @import("error.zig"); +pub const YazapError = yazap_error.YazapError; test "emit docs" { - std.testing.refAllDeclsRecursive(@This()); + comptime { + std.testing.refAllDecls(App); + std.testing.refAllDecls(Arg); + std.testing.refAllDecls(arg_matches); + std.testing.refAllDecls(Command); + std.testing.refAllDecls(yazap_error); + } }