Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
burner1024 committed Mar 10, 2024
1 parent 195d565 commit b7367fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/fallout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit b7367fc

Please sign in to comment.