aboutsummaryrefslogtreecommitdiff
path: root/src/string_builder.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_builder.zig')
-rw-r--r--src/string_builder.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_builder.zig b/src/string_builder.zig
index adb9e2ae0..23e83917b 100644
--- a/src/string_builder.zig
+++ b/src/string_builder.zig
@@ -3,7 +3,7 @@ const Allocator = @import("std").mem.Allocator;
const assert = @import("std").debug.assert;
const copy = @import("std").mem.copy;
const Env = @import("./env.zig");
-const bun = @import("./global.zig");
+const bun = @import("bun");
const StringBuilder = @This();
const DebugHashTable = if (Env.allow_assert) std.AutoHashMapUnmanaged(u64, void) else void;