aboutsummaryrefslogtreecommitdiff
path: root/src/string_mutable.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_mutable.zig')
-rw-r--r--src/string_mutable.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_mutable.zig b/src/string_mutable.zig
index a9f528cc0..2a130672a 100644
--- a/src/string_mutable.zig
+++ b/src/string_mutable.zig
@@ -31,7 +31,7 @@ pub const MutableString = struct {
}
pub fn owns(this: *const MutableString, slice: []const u8) bool {
- return @import("./global.zig").isSliceInBuffer(slice, this.list.items.ptr[0..this.list.capacity]);
+ return @import("bun").isSliceInBuffer(slice, this.list.items.ptr[0..this.list.capacity]);
}
pub fn growIfNeeded(self: *MutableString, amount: usize) !void {