From 61deca80edb1632eb8ca22f627c6001b757021dc Mon Sep 17 00:00:00 2001 From: a-kenji Date: Thu, 7 Jul 2022 09:04:12 +0200 Subject: [PATCH] fix: typo (#1567) --- src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index 4eaea23b..5abedf3d 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); } }