From f1b5caa2b698343a2dd4d6865e0d3fd92678c208 Mon Sep 17 00:00:00 2001 From: Simon McKenna Date: Tue, 23 Apr 2024 11:16:27 +0930 Subject: [PATCH] Fix typos --- README.md | 2 +- src/cli.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9489a97..4bd9f60 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Usage: kubempf [OPTIONS] <[[LOCAL_ADDRESS:]LOCAL_PORT:][NAMESPACE/]SERVICE:PORT> Arguments: <[[LOCAL_ADDRESS:]LOCAL_PORT:][NAMESPACE/]SERVICE:PORT>... - Establish a new port forward - multiple entries can be speficied. + Establish a new port forward - multiple entries can be specified. SERVICE:PORT - Binds to localhost (127.0.0.1 and ::1) on PORT and forwards connections to PORT on SERVICE in the default namespace NAMESPACE/SERVICE:PORT - Binds to localhost (127.0.0.1 and ::1) on PORT and forwards connections to PORT on SERVICE in NAMESPACE diff --git a/src/cli.rs b/src/cli.rs index 5b3bfb9..9b51e5f 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -7,7 +7,7 @@ use crate::errors::MyError; #[command(author, version, about)] #[command(long_about = "Multi-service port proxying tool for Kubernetes")] pub struct CliArgs { - /// Establish a new port forward - multiple entries can be speficied. + /// Establish a new port forward - multiple entries can be specified. /// /// SERVICE:PORT - Binds to localhost (127.0.0.1 and ::1) on PORT and forwards connections to PORT on SERVICE in the default namespace /// NAMESPACE/SERVICE:PORT - Binds to localhost (127.0.0.1 and ::1) on PORT and forwards connections to PORT on SERVICE in NAMESPACE