From 4aeb32cc4f52464005bfbfc7a9439b0d80f23ec3 Mon Sep 17 00:00:00 2001 From: Mike Giroux Date: Mon, 27 May 2024 10:44:03 -0400 Subject: [PATCH] Trivial "It's"->"Its" fix --- kittens/ssh/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kittens/ssh/main.go b/kittens/ssh/main.go index afae7413b..edbb42af2 100644 --- a/kittens/ssh/main.go +++ b/kittens/ssh/main.go @@ -838,7 +838,7 @@ func EntryPoint(parent *cli.Command) { func specialize_command(ssh *cli.Command) { ssh.Usage = "arguments for the ssh command" ssh.ShortDescription = "Truly convenient SSH" - ssh.HelpText = "The ssh kitten is a thin wrapper around the ssh command. It automatically enables shell integration on the remote host, re-uses existing connections to reduce latency, makes the kitty terminfo database available, etc. It's invocation is identical to the ssh command. For details on its usage, see :doc:`/kittens/ssh`." + ssh.HelpText = "The ssh kitten is a thin wrapper around the ssh command. It automatically enables shell integration on the remote host, re-uses existing connections to reduce latency, makes the kitty terminfo database available, etc. Its invocation is identical to the ssh command. For details on its usage, see :doc:`/kittens/ssh`." ssh.IgnoreAllArgs = true ssh.OnlyArgsAllowed = true ssh.ArgCompleter = cli.CompletionForWrapper("ssh")