From b7367fca65962db232c6e74f33248d18a5abd7ad Mon Sep 17 00:00:00 2001 From: Magus <magus@bgforge.net> Date: Sun, 10 Mar 2024 15:08:20 +0700 Subject: [PATCH] typos --- server/src/fallout.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/fallout.ts b/server/src/fallout.ts index a070fb3..217be2b 100644 --- a/server/src/fallout.ts +++ b/server/src/fallout.ts @@ -309,7 +309,7 @@ function findSymbols(text: string) { defineDetail = `${defineName}(${defineVars})`; } - // check if it's looks like a constant + // check if it looks like a constant let constant = false; if (!multiline && constantRegex.test(defineName)) { constant = true; @@ -448,7 +448,7 @@ function jsdocToDetail(label: string, jsd: jsdoc.JSdoc) { /** * Wine gives network-mapped looking path to compile.exe - * @param path looks like this `Z:/Downloads/1/_mls_test.h`, should be this `/home/user/Downloads/1/_mls_test.h` + * @param filePath looks like this `Z:/Downloads/1/_mls_test.h`, should be this `/home/user/Downloads/1/_mls_test.h` * Imperfect, but works. */ function fixWinePath(filePath: string) {