diff --git a/main.ts b/main.ts index b8a6577..0f40451 100644 --- a/main.ts +++ b/main.ts @@ -17,7 +17,7 @@ export default class LastFmPlugin extends Plugin { (_evt: MouseEvent) => { if (!this.settings.apiKey || !this.settings.username) { // Defenive coding against missing input settings (API key and user name) - new Notice("Please configure last.fm api key and username in settings → last.fm plugin."); + new Notice("lease configure last.fm API key and username in the settings."); return; } const api = new LastFmApi(this.settings.apiKey, this.settings.username); diff --git a/settings.ts b/settings.ts index f4db5da..ef80a8a 100644 --- a/settings.ts +++ b/settings.ts @@ -30,7 +30,7 @@ export class LastFmSettingTab extends PluginSettingTab { * ---------------------------- */ new Setting(containerEl) .setName('API key') - .setDesc('Your last.fm api key') + .setDesc('Your last.fm API key') .addText(text => text .setValue(this.plugin.settings.apiKey) .onChange(async (value) => {