From 03db5be98526222c985d9251f784550e2466b551 Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Thu, 10 Dec 2020 18:25:37 +0000 Subject: [PATCH] Fix punctuation of Weechat client description --- src/open/clients/Weechat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/open/clients/Weechat.js b/src/open/clients/Weechat.js index 49ceb7a..5cf6293 100644 --- a/src/open/clients/Weechat.js +++ b/src/open/clients/Weechat.js @@ -26,7 +26,7 @@ export class Weechat { get author() { return "Poljar"; } get homepage() { return "https://github.com/poljar/weechat-matrix"; } get platforms() { return [Platform.Windows, Platform.macOS, Platform.Linux]; } - get description() { return 'Command-line Matrix interface using Weechat'; } + get description() { return 'Command-line Matrix interface using Weechat.'; } getMaturity(platform) { return Maturity.Beta; } getDeepLink(platform, link) {} canInterceptMatrixToLinks(platform) { return false; }