From e01df37cb58aa208fa61e81d2381ac917f5bc0de Mon Sep 17 00:00:00 2001 From: a-kenji Date: Thu, 7 Jul 2022 08:43:30 +0200 Subject: [PATCH] fix: typo Because it was wrong. --- src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index 4eaea23b0f..5abedf3d15 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -278,7 +278,7 @@ pub(crate) fn start_client(opts: CliArgs) { if let Ok(val) = std::env::var(envs::SESSION_NAME_ENV_KEY) { if val == *client.get_session_name() { - eprintln!("You are trying to attach to the current session(\"{}\"). Zellij does not support nesting a session in itself", val); + eprintln!("You are trying to attach to the current session(\"{}\"). Zellij does not support nesting a session in itself.", val); process::exit(1); } }