Spell fix s/e.g/e.g./ across code, tests and docs

This commit is contained in:
Debanjum Singh Solanky
2024-06-24 12:50:33 +05:30
parent 8fc7f980aa
commit 732332a3c5
10 changed files with 18 additions and 17 deletions

View File

@@ -354,7 +354,7 @@ export function getLinkToEntry(sourceFiles: TFile[], chosenFile: string, chosenE
// This finds longest path match when multiple files have same name
.sort((a, b) => b.path.length - a.path.length)
// The first match is the best file match across OS
// e.g Khoj server on Linux, Obsidian vault on Android
// e.g. Khoj server on Linux, Obsidian vault on Android
.find(file => chosenFile.replace(/\\/g, "/").endsWith(file.path))
// Return link to vault file at heading of chosen search result