From 71735e5ccb2978371edccc10cbac09b080310178 Mon Sep 17 00:00:00 2001 From: Eugene Zinovyev Date: Sun, 17 Aug 2025 02:14:28 +0200 Subject: [PATCH] fix typo in highlight comment --- packages/report/src/highlight/tokenize.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/report/src/highlight/tokenize.js b/packages/report/src/highlight/tokenize.js index 57e6f79..7bc7701 100644 --- a/packages/report/src/highlight/tokenize.js +++ b/packages/report/src/highlight/tokenize.js @@ -19,7 +19,7 @@ function createTokenize(uncoveredBranchTag, language) { [UncoveredBranchEnd]: new RegExp(endTag), // we can either make them greedy and add base grammar after // OR we can remove them from token stream and run a separate highlight on the rest of the 'uncovered-branch' content - // OR we can leave them as is to have no highlighting inside the 'uncovered-branch' content (the option I went with because it lloks + // OR we can leave them as is to have no highlighting inside the 'uncovered-branch' content (the option I went with because it looks // slightly better to have no highlighting for the 'uncovered-branch' content) }, };