aboutsummaryrefslogtreecommitdiff
path: root/src/http/zlib.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
commitea47ed0ee5969d31e03c55ba3bc384466615e513 (patch)
treef7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/http/zlib.zig
parent36f9fd607a238fc029d64cc27a26b203a856cbbd (diff)
downloadbun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip
Fix broken autocomplete
Diffstat (limited to 'src/http/zlib.zig')
-rw-r--r--src/http/zlib.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/zlib.zig b/src/http/zlib.zig
index 13db13646..e827dc1b3 100644
--- a/src/http/zlib.zig
+++ b/src/http/zlib.zig
@@ -1,10 +1,10 @@
const Lock = @import("../lock.zig").Lock;
const std = @import("std");
-const MutableString = @import("bun").MutableString;
+const MutableString = @import("root").bun.MutableString;
const getAllocator = @import("../http_client_async.zig").getAllocator;
const ZlibPool = @This();
const Zlib = @import("../zlib.zig");
-const bun = @import("bun");
+const bun = @import("root").bun;
fn initMutableString(allocator: std.mem.Allocator) anyerror!MutableString {
return MutableString.initEmpty(allocator);