Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class NodeFactorSettingTab extends PluginSettingTab {

new Setting(containerEl)
.setName("Forward link weight multiplier")
.setDesc("Multiplier for forward links weight (0 to diable).")
.setDesc("Multiplier for forward links weight (0 to disable).")
.addSlider((slider) =>
slider
.setLimits(0, 20, 1)
Expand All @@ -42,7 +42,7 @@ export default class NodeFactorSettingTab extends PluginSettingTab {

new Setting(containerEl)
.setName("Backward link weight multiplier")
.setDesc("Multiplier for backward links weight (0 to diable).")
.setDesc("Multiplier for backward links weight (0 to disable).")
.addSlider((slider) =>
slider
.setLimits(0, 20, 1)
Expand Down