From 79421c6685c41360d20e999300efd8cb04cffa3c Mon Sep 17 00:00:00 2001 From: George Tsiamasiotis Date: Thu, 19 Dec 2024 17:13:39 +0200 Subject: [PATCH] cli: fix typo in comment --- cli/src/cli_util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/cli_util.rs b/cli/src/cli_util.rs index a3282722b..9fe5941eb 100644 --- a/cli/src/cli_util.rs +++ b/cli/src/cli_util.rs @@ -556,7 +556,7 @@ impl CommandHelper { /// Returns true if the current operation is considered to be the head. pub fn is_at_head_operation(&self) -> bool { // TODO: should we accept --at-op= as the head op? or should we - // make --at-op=@ imply --ignore-workign-copy (i.e. not at the head.) + // make --at-op=@ imply --ignore-working-copy (i.e. not at the head.) matches!( self.data.global_args.at_operation.as_deref(), None | Some("@")