Skip to content

Commit

Permalink
Fix build.zig typo for enable_tracy using better wording
Browse files Browse the repository at this point in the history
  • Loading branch information
sepruko authored and SuperAuguste committed Jul 9, 2022
1 parent 3b33750 commit 8d27b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn build(b: *std.build.Builder) !void {
b.option(std.log.Level, "log_level", "The Log Level to be used.") orelse .info,
);

const enable_tracy = b.option(bool, "enable_tracy", "Whether of not tracy should be enabled.") orelse false;
const enable_tracy = b.option(bool, "enable_tracy", "Whether tracy should be enabled.") orelse false;

exe_options.addOption(
bool,
Expand Down

0 comments on commit 8d27b17

Please sign in to comment.