Skip to content

Commit 79b440d

Browse files
authored
docs: improve wording (#32)
1 parent b13a7c1 commit 79b440d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/obsidian-dataview/types.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import type { SMarkdownPage, STask } from "obsidian-dataview/lib/data-model/seri
55

66
export { getAPI, isPluginEnabled } from "obsidian-dataview";
77

8-
/** Metadata the obsidian-dataview plugin tracks from notes. */
8+
/** The metadata that the obsidian-dataview plugin extracts from notes. */
99
export type DataviewMarkdownPage = SMarkdownPage;
1010

11-
/** Metadata the obsidian-dataview plugin tracks from tasks. Extended to improve type information. */
11+
/** The metadata that the obsidian-dataview plugin extracts from tasks. Extended to improve type information. */
1212
export interface DataviewMarkdownTask extends STask {
1313
created?: DateTime;
1414
due?: DateTime;
@@ -17,7 +17,7 @@ export interface DataviewMarkdownTask extends STask {
1717
scheduled?: DateTime;
1818
}
1919

20-
/** API the obsidian-dataview plugin exposes to plugin authors. Extended to improve type information. */
20+
/** The API that the obsidian-dataview plugin exposes to plugin authors. Extended to improve type information. */
2121
export interface DataviewApi extends ActualDataviewApi {
2222
pages(query: string): DataArray<SMarkdownPage>;
2323
}

0 commit comments

Comments
 (0)