From 85baa0f3c06ed76502bd4fdc3cb9cbbc949909db Mon Sep 17 00:00:00 2001 From: huseeiin <122984423+huseeiin@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:39:20 -0400 Subject: [PATCH] typo (#11957) --- src/bun.js/javascript.zig | 2 +- test/bundler/bundler_bun.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"); }, }, });