aboutsummaryrefslogtreecommitdiff
path: root/src/sourcemap/sourcemap.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-03-17 01:27:35 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-03-17 01:27:35 -0700
commit74f4c8bcab092d97628e996dc89c81f76114ba37 (patch)
treea66df0d8517d167b2642d06ecff1d2a5cf63bd69 /src/sourcemap/sourcemap.zig
parent89fb624c5be2ac64a01570fff106f7f5e386473a (diff)
downloadbun-74f4c8bcab092d97628e996dc89c81f76114ba37.tar.gz
bun-74f4c8bcab092d97628e996dc89c81f76114ba37.tar.zst
bun-74f4c8bcab092d97628e996dc89c81f76114ba37.zip
query_string_map -> url
Diffstat (limited to 'src/sourcemap/sourcemap.zig')
-rw-r--r--src/sourcemap/sourcemap.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sourcemap/sourcemap.zig b/src/sourcemap/sourcemap.zig
index a0cb35f96..a46d45b60 100644
--- a/src/sourcemap/sourcemap.zig
+++ b/src/sourcemap/sourcemap.zig
@@ -11,7 +11,7 @@ const strings = @import("../string_immutable.zig");
const MutableString = @import("../string_mutable.zig").MutableString;
const Joiner = @import("../string_joiner.zig");
const JSPrinter = @import("../js_printer.zig");
-const URL = @import("../query_string_map.zig").URL;
+const URL = @import("../url.zig").URL;
const FileSystem = @import("../fs.zig").FileSystem;
const SourceMap = @This();