Skip to content

Commit

Permalink
chore(lib): Use lf instead of crlf
Browse files Browse the repository at this point in the history
Signed-off-by: prajwalch <[email protected]>
  • Loading branch information
prajwalch committed Sep 10, 2024
1 parent 40a5244 commit 51f52e2
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/lib.zig
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
const std = @import("std");
pub const App = @import("App.zig");
pub const Arg = @import("Arg.zig");
pub const ArgMatches = @import("ArgMatches.zig");
pub const Command = @import("Command.zig");
pub const yazap_error = @import("error.zig");
pub const YazapError = yazap_error.YazapError;

test "emit docs" {
comptime {
std.testing.refAllDecls(App);
std.testing.refAllDecls(Arg);
std.testing.refAllDecls(ArgMatches);
std.testing.refAllDecls(Command);
std.testing.refAllDecls(yazap_error);
}
}
const std = @import("std");
pub const App = @import("App.zig");
pub const Arg = @import("Arg.zig");
pub const ArgMatches = @import("ArgMatches.zig");
pub const Command = @import("Command.zig");
pub const yazap_error = @import("error.zig");
pub const YazapError = yazap_error.YazapError;

test "emit docs" {
comptime {
std.testing.refAllDecls(App);
std.testing.refAllDecls(Arg);
std.testing.refAllDecls(ArgMatches);
std.testing.refAllDecls(Command);
std.testing.refAllDecls(yazap_error);
}
}

0 comments on commit 51f52e2

Please sign in to comment.