From 8c6ee91124da6665aaee97e2d84af279200098a8 Mon Sep 17 00:00:00 2001 From: stevenfranks Date: Tue, 24 Sep 2019 13:21:12 +0100 Subject: [PATCH] Added missing word to whoami response --- src/commands/whoami.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/whoami.rs b/src/commands/whoami.rs index 75d5a3942..58a39c1cc 100644 --- a/src/commands/whoami.rs +++ b/src/commands/whoami.rs @@ -3,7 +3,7 @@ use crate::terminal::{emoji, message}; pub fn whoami(user: &GlobalUser) { let msg = format!( - "{} You are logged with the email '{}'.", + "{} You are logged in with the email '{}'.", emoji::WAVING, user.email );