diff --git a/src/bun.js/javascript.zig b/src/bun.js/javascript.zig index d69100d8bb..98555dcece 100644 --- a/src/bun.js/javascript.zig +++ b/src/bun.js/javascript.zig @@ -198,7 +198,7 @@ pub const SavedSourceMap = struct { if (seen_invalid) return; if (path) |note| { Output.note("missing sourcemaps for {s}", .{note}); - Output.note("consider bundling with '--sourcemap' to get an unminified traces", .{}); + Output.note("consider bundling with '--sourcemap' to get unminified traces", .{}); } } }; diff --git a/test/bundler/bundler_bun.test.ts b/test/bundler/bundler_bun.test.ts index 6631860684..8f007657e5 100644 --- a/test/bundler/bundler_bun.test.ts +++ b/test/bundler/bundler_bun.test.ts @@ -61,7 +61,7 @@ describe("bundler", () => { exitCode: 1, validate({ stderr }) { expect(stderr).toInclude("\nnote: missing sourcemaps for "); - expect(stderr).toInclude("\nnote: consider bundling with '--sourcemap' to get an unminified traces\n"); + expect(stderr).toInclude("\nnote: consider bundling with '--sourcemap' to get unminified traces\n"); }, }, });