From c7f8749b928b6592d9d54021e38660e6df9d10a9 Mon Sep 17 00:00:00 2001 From: halfnelson Date: Mon, 26 Oct 2020 15:41:07 +1000 Subject: [PATCH] fix typo in src/compiler/preprocess/index.ts Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> --- src/compiler/preprocess/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/preprocess/index.ts b/src/compiler/preprocess/index.ts index 12cc8b00cd..27c1c471c1 100644 --- a/src/compiler/preprocess/index.ts +++ b/src/compiler/preprocess/index.ts @@ -5,7 +5,7 @@ import { StringWithSourcemap, sourcemap_add_offset, combine_sourcemaps } from '. export interface Processed { code: string; - map?: string | object; // we be opaque with the type here to avoid dependency on the remapping module for our public types. + map?: string | object; // we are opaque with the type here to avoid dependency on the remapping module for our public types. dependencies?: string[]; }