From 47ecb13d7ba7007fac2a5641eff0f567565c333d Mon Sep 17 00:00:00 2001 From: andrii <25188+unorsk@users.noreply.github.com> Date: Thu, 3 Apr 2025 14:10:17 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bd6fd3..df7b689 100644 --- a/README.md +++ b/README.md @@ -376,7 +376,7 @@ $ zig build run-routes const std = @import("std"); const zap = @import("zap"); -fn on_request(r: zap.Request) void { +fn on_request(r: zap.Request) !void { if (r.path) |the_path| { std.debug.print("PATH: {s}\n", .{the_path}); }