From dd5ad72b5aa5d7f8a02ce82c7e1cd37ef77115f1 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Thu, 13 May 2021 10:05:23 -0700 Subject: [PATCH] change import to allow embedding json.zig in this project --- src/json.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json.zig b/src/json.zig index 68a6376..28f0f44 100644 --- a/src/json.zig +++ b/src/json.zig @@ -7,7 +7,7 @@ // // https://tools.ietf.org/html/rfc8259 -const std = @import("std.zig"); +const std = @import("std"); const debug = std.debug; const assert = debug.assert; const testing = std.testing;