From 139718b3365fbc71de75eb665dba74570314984e Mon Sep 17 00:00:00 2001 From: Nbiba Bedis Date: Sun, 22 Dec 2024 08:13:36 +0100 Subject: [PATCH] mention :help in the default welcome msg --- crates/irust/src/irust/art.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/irust/src/irust/art.rs b/crates/irust/src/irust/art.rs index e0191bf..71a4991 100644 --- a/crates/irust/src/irust/art.rs +++ b/crates/irust/src/irust/art.rs @@ -98,7 +98,7 @@ impl IRust { } pub fn welcome(&mut self) -> Result<()> { - let default_msg = "Welcome to IRust".to_string(); + let default_msg = "Welcome to IRust (type ':help' for more information)".to_string(); let msg = (|| { if let Some(msg) = self.trigger_set_msg_hook() { return self.fit_msg(&msg);