Skip to content

Commit

Permalink
Use sentence case consistently in settings descriptions (#69)
Browse files Browse the repository at this point in the history
This better matches the rest of the Obsidian user interface.
  • Loading branch information
jparise authored Oct 2, 2024
1 parent 7e361c0 commit c0fa1a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class InstapaperSettingTab extends PluginSettingTab {

new Setting(containerEl)
.setName('Sync frequency')
.setDesc('The frequency at which Obsidian (when running) will automatically sync your data')
.setDesc('The frequency at which Obsidian (when running) will automatically sync your data.')
.addDropdown((dropdown) => {
dropdown.addOption("0", "Manual");
dropdown.addOption("60", "Hourly");
Expand All @@ -102,7 +102,7 @@ export class InstapaperSettingTab extends PluginSettingTab {

new Setting(containerEl)
.setName('Sync on start')
.setDesc('Automatically sync when Obsidian starts or an account is connected')
.setDesc('Automatically sync when Obsidian starts or an account is connected.')
.addToggle((toggle) => {
toggle.setValue(this.plugin.settings.syncOnStart);
toggle.onChange(async (value) => {
Expand All @@ -116,7 +116,7 @@ export class InstapaperSettingTab extends PluginSettingTab {

new Setting(containerEl)
.setName('Notes folder')
.setDesc('Folder in which your notes and highlights will be synced')
.setDesc('The folder in which your notes and highlights will be synced.')
.addText((text) => {
text.setValue(this.plugin.settings.notesFolder)
text.onChange(async (value) => {
Expand Down

0 comments on commit c0fa1a0

Please sign in to comment.