diff options
Diffstat (limited to 'src/string_joiner.zig')
-rw-r--r-- | src/string_joiner.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_joiner.zig b/src/string_joiner.zig index 373d24633..884dce2ef 100644 --- a/src/string_joiner.zig +++ b/src/string_joiner.zig @@ -1,7 +1,7 @@ /// Rope-like data structure for joining many small strings into one big string. const std = @import("std"); const default_allocator = bun.default_allocator; -const bun = @import("bun"); +const bun = @import("root").bun; const string = bun.string; const Allocator = std.mem.Allocator; const ObjectPool = @import("./pool.zig").ObjectPool; |