From 6f62c61897e5536798c1960d554bade787633fb4 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Tue, 25 Nov 2025 19:34:21 +0100 Subject: [PATCH] doc: correct code snippet for `build.zig`'s inclusion of `zlog` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3aceebe..cdc0756 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ zig fetch --save git+https://gitea.yves-biener.de/yves-biener/zlog Afterwards add the library as a dependency to any module in your *build.zig*: ```zig -const ztime_dependency = b.dependency("ztime", .{ +const zlog_dependency = b.dependency("zlog", .{ .target = target, .optimize = optimize, .timestamp = true, // default (only required if non-default value shall be used)