From f93e27fc8d4509ea7a0348401d6bb35b66220b87 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Fri, 4 Oct 2024 20:55:50 +0200 Subject: [PATCH] doc: correct spell checking error --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 37ebbc5..8ec5671 100644 --- a/build.zig +++ b/build.zig @@ -4,7 +4,7 @@ const std = @import("std"); // declaratively construct a build graph that will be executed by an external // runner. pub fn build(b: *std.Build) void { - // build options to customize the log message formating + // build options to customize the log message formatting const include_timestamp = b.option(bool, "timestamp", "Enable inclusion of timestamps in log messages (default: true)") orelse true; const stderr = b.option(bool, "stderr", "Print all log messages to stderr (default: true)") orelse true; const file = b.option([]const u8, "file", "Print all log messages to the provided file.") orelse "";