Skip to content

Commit

Permalink
Merge pull request #15 from bencodezen/docs/update-settings-messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
beaussan authored Nov 9, 2021
2 parents 9e4d3c9 + 9d423f8 commit 0e1f7ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class UpdateTimeOnEditSettingsTab extends PluginSettingTab {
addTimeBetweenUpdates(): void {
new Setting(this.containerEl)
.setName('Minimum number of minutes between update')
.setDesc('If you have files updated too ofter, increase this.')
.setDesc('If your files are updating too often, increase this.')
.addSlider((slider) =>
slider
.setLimits(1, 30, 1)
Expand Down Expand Up @@ -218,9 +218,9 @@ export class UpdateTimeOnEditSettingsTab extends PluginSettingTab {
setValue: async (newValue) => {
this.plugin.settings.ignoreCreatedFolder = newValue;
},
name: 'Folder to exclude of only created updates',
name: 'Folder(s) to exclude for updating the created property',
description:
'Any file udpate in this folder will not trigger a created update.',
'Any file updated in this folder will not trigger a created update.',
});
}

Expand All @@ -232,7 +232,7 @@ export class UpdateTimeOnEditSettingsTab extends PluginSettingTab {
},
name: 'Folder to exclude of all updates',
description:
'Any file udpate in this folder will not trigger a updated and created update.',
'Any file updated in this folder will not trigger an updated and created update.',
});
}

Expand Down

0 comments on commit 0e1f7ea

Please sign in to comment.