diff options
author | 2023-04-19 00:01:27 -0700 | |
---|---|---|
committer | 2023-04-19 00:01:27 -0700 | |
commit | ea47ed0ee5969d31e03c55ba3bc384466615e513 (patch) | |
tree | f7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/util.zig | |
parent | 36f9fd607a238fc029d64cc27a26b203a856cbbd (diff) | |
download | bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip |
Fix broken autocomplete
Diffstat (limited to 'src/util.zig')
-rw-r--r-- | src/util.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.zig b/src/util.zig index 8e06df9a1..fbc98d666 100644 --- a/src/util.zig +++ b/src/util.zig @@ -1,6 +1,6 @@ // Things that maybe should go in Zig standard library at some point const std = @import("std"); -const bun = @import("bun"); +const bun = @import("root").bun; pub fn Key(comptime Map: type) type { return FieldType(Map.KV, "key").?; |