Skip to content

Commit

Permalink
Update setting descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
decaplanet committed Dec 27, 2023
1 parent bd41588 commit b7cd167
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/settings/settingTab.ts
Expand Up @@ -36,7 +36,7 @@ export class MainPluginSettingTab extends PluginSettingTab {
});
new Setting(containerEl)
.setName("Before top level headings")
.setDesc("Decides gaps before highest level of headings.")
.setDesc("Decides gaps before top level of headings.")
.addText((text) =>
text
.setPlaceholder("3")
Expand Down Expand Up @@ -83,7 +83,7 @@ export class MainPluginSettingTab extends PluginSettingTab {
new Setting(containerEl)
.setName("Before sub headings")
.setDesc(
"Decides gaps before headings that are not in the highest level."
"Decides gaps before headings that are not in the top level."
)
.addText((text) =>
text
Expand Down Expand Up @@ -111,7 +111,7 @@ export class MainPluginSettingTab extends PluginSettingTab {
});
new Setting(containerEl)
.setName("After properties")
.setDesc("Decides the gap after a YAML properties.")
.setDesc("Decides the gap right after the property section.")
.addText((text) =>
text
.setPlaceholder("2")
Expand All @@ -131,7 +131,7 @@ export class MainPluginSettingTab extends PluginSettingTab {
new Setting(containerEl)
.setName("Before contents")
.setDesc(
"Decides gaps before contents (ex: Text section right before headings)."
"Decides gaps before contents (ex: Text section before headings)."
)
.addText((text) =>
text
Expand All @@ -151,9 +151,7 @@ export class MainPluginSettingTab extends PluginSettingTab {
);
new Setting(containerEl)
.setName("Before contents after code blocks")
.setDesc(
"Decides gaps before contents that are right after code blocks."
)
.setDesc("Decides gaps before contents that are after code blocks.")
.addText((text) =>
text
.setPlaceholder("1")
Expand Down

0 comments on commit b7cd167

Please sign in to comment.