Skip to content

Commit 9b6c905

Browse files
committed
Adjusted settings descriptions
1 parent 34c6748 commit 9b6c905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/settings/SettingsTab.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class BetterWordCountSettingsTab extends PluginSettingTab {
1818
new Setting(containerEl)
1919
.setName("Collect Statistics")
2020
.setDesc(
21-
"Reload Required for change to take effect. Turn on to start collecting daily statistics of your writing. Stored in the vault-stats.json file in the .obsidian of your vault. This is required for counts of the day as well as total counts."
21+
"Reload required for change to take effect. Turn on to start collecting daily statistics of your writing. Stored in the path specified below. This is required for counts of the day as well as total counts."
2222
)
2323
.addToggle((cb: ToggleComponent) => {
2424
cb.setValue(this.plugin.settings.collectStats);
@@ -65,7 +65,7 @@ export default class BetterWordCountSettingsTab extends PluginSettingTab {
6565
containerEl.createEl("h4", { text: "Advanced Settings" });
6666
new Setting(containerEl)
6767
.setName("Vault Stats File Path")
68-
.setDesc("Reload Required for change to take effect. The location of the vault statistics file, relative to the vault root.")
68+
.setDesc("Reload required for change to take effect. The location of the vault statistics file, relative to the vault root.")
6969
.addText((text: TextComponent) => {
7070
text.setPlaceholder(".obsidian/vault-stats.json");
7171
text.setValue(this.plugin.settings.statsPath.toString());

0 commit comments

Comments
 (0)