Add trailing newline

This commit is contained in:
Michael Naumov
2022-06-06 11:02:32 -06:00
parent 0c031c6def
commit f0e4eeaf05
2 changed files with 2 additions and 2 deletions

View File

@@ -148,4 +148,4 @@ export async function saveNotesCacheToFile(): Promise<void> {
export function isCacheOutdated(file: TFile): boolean {
const indexedNote = getNoteFromCache(file.path)
return !indexedNote || indexedNote.mtime !== file.stat.mtime
}
}

View File

@@ -399,4 +399,4 @@ async function saveIndexToFile(): Promise<void> {
await saveNotesCacheToFile()
isIndexChanged = false
}
}
}