BSD Sysexits for Zig

docs: fix import instructions

Signed-off-by: @matrixfurry.com <did:plc:zmjoeu3stwcn44647rhxa44o>

matrixfurry.com cd2f775e 9be08377

verified
+1 -4
+1 -4
README.md
··· 17 18 Import the package in your `build.zig`: 19 ```zig 20 - const sysexits = b.dependency("sysexits", .{ 21 - .target = target, 22 - .optimize = optimize, 23 - }).module("sysexits"); 24 25 exe.root_module.addImport("sysexits", sysexits); 26 ```
··· 17 18 Import the package in your `build.zig`: 19 ```zig 20 + const sysexits = b.dependency("sysexits", .{}).module("sysexits"); 21 22 exe.root_module.addImport("sysexits", sysexits); 23 ```