From 9dc5f7c7bab3a3b1b24d42ae2fadb10e48cbc292 Mon Sep 17 00:00:00 2001 From: Vinzent Date: Mon, 5 Sep 2022 23:48:26 +0200 Subject: [PATCH] fix: password field description close #293 --- src/settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings.ts b/src/settings.ts index 7473a53e..fd626463 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -411,7 +411,7 @@ export class ObsidianGitSettingsTab extends PluginSettingTab { if (plugin.gitManager instanceof IsomorphicGit) new Setting(containerEl) .setName("Password/Personal access token") - .setDesc("Type in your password and press on the button to set it. You won't be able to see it again.") + .setDesc("Type in your password. You won't be able to see it again.") .addText(cb => { cb.inputEl.autocapitalize = "off"; cb.inputEl.autocomplete = "off";