We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8e3d7 commit 7d38dcbCopy full SHA for 7d38dcb
src/Task/Link.ts
@@ -6,11 +6,11 @@ export class Link {
6
7
/**
8
* @param {LinkCache} rawLink - The raw link from Obsidian cache.
9
- * @param {string} filename - The name of the file where this link is located.
+ * @param {string} filenameContainingLink - The name of the file where this link is located.
10
*/
11
- constructor(rawLink: LinkCache, filename: string) {
+ constructor(rawLink: LinkCache, filenameContainingLink: string) {
12
this.rawLink = rawLink;
13
- this.filenameContainingLink = filename;
+ this.filenameContainingLink = filenameContainingLink;
14
}
15
16
public get originalMarkdown() {
0 commit comments