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 aeab23c commit aeed58cCopy full SHA for aeed58c
tests/Task/ListItemHelpers.ts
@@ -1,7 +1,7 @@
1
import { ListItem } from '../../src/Task/ListItem';
2
3
-export function createChildListItem(originalMarkdown: string, item1: ListItem) {
+export function createChildListItem(originalMarkdown: string, parent: ListItem) {
4
// This exists purely to silence WebStorm about typescript:S1848
5
// See https://sonarcloud.io/organizations/obsidian-tasks-group/rules?open=typescript%3AS1848&rule_key=typescript%3AS1848
6
- new ListItem(originalMarkdown, item1);
+ new ListItem(originalMarkdown, parent);
7
}
0 commit comments