From 1ec19bdf38aa31d73a5a65a663e2b2e3df106ea5 Mon Sep 17 00:00:00 2001 From: Erhan Date: Tue, 7 May 2024 23:46:39 +0300 Subject: [PATCH] Minor comment typos (#89) --- chkhealth.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chkhealth.sh b/chkhealth.sh index ea87211..2777573 100755 --- a/chkhealth.sh +++ b/chkhealth.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# optional argument to specgify the ip address +# Optional argument to specify the ip address ip_address="localhost:8645" plain_text_out=false @@ -31,7 +31,7 @@ if [[ -n "$1" ]]; then ip_address="$1" fi -# check if curl is available +# Check if curl is available if ! command -v curl &> /dev/null then echo "curl could not be found"