Skip to content

Commit 4d9612d

Browse files
committed
fix: fix typos in lib/init/build.zig
releative -> relevant desireable -> desirable
1 parent 9473011 commit 4d9612d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/init/build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub fn build(b: *std.Build) void {
6767
// Target and optimization levels must be explicitly wired in when
6868
// defining an executable or library (in the root module), and you
6969
// can also hardcode a specific target for an executable or library
70-
// definition if desireable (e.g. firmware for embedded devices).
70+
// definition if desirable (e.g. firmware for embedded devices).
7171
.target = target,
7272
.optimize = optimize,
7373
// List of modules available for import in source files part of the
@@ -117,7 +117,7 @@ pub fn build(b: *std.Build) void {
117117

118118
// Creates an executable that will run `test` blocks from the provided module.
119119
// Here `mod` needs to define a target, which is why earlier we made sure to
120-
// set the releative field.
120+
// set the relevant field.
121121
const mod_tests = b.addTest(.{
122122
.root_module = mod,
123123
});

0 commit comments

Comments
 (0)