From 303dd5208eb95c19ec915cc60cf0682e8923bb7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo?= Date: Sun, 1 Jan 2023 21:15:01 +0000 Subject: [PATCH] Fix inactive message string --- README.md | 6 +++--- src/main.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7802ed1..23b228b 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ Expected output: ``` Paste API Key here: Found 171 users. Checking... -veracrypt (https://mastodon.social/@veracrypt) seems to inactive +veracrypt (https://mastodon.social/@veracrypt) seems to be inactive ... -fsf (https://status.fsf.org/fsf) seems to inactive -gnome (https://quitter.no/gnome) seems to inactive +fsf (https://status.fsf.org/fsf) seems to be inactive +gnome (https://quitter.no/gnome) seems to be inactive 38 of them seem to be inactive for at least 180 days ``` diff --git a/src/main.rs b/src/main.rs index 132cfe8..73bbcbe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -111,7 +111,7 @@ fn main() { if user.is_active(*days) { return 0; } else { - println!("{} ({}) seems to inactive", user.username, user.url); + println!("{} ({}) seems to be inactive", user.username, user.url); return 1; } })