aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/urlcheck2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/urlcheck b/bin/urlcheck
index 7151b85e..5692a892 100755
--- a/bin/urlcheck
+++ b/bin/urlcheck
@@ -32,7 +32,7 @@ declare -i errc
# Iterate through input; ignore leading/trailing whitespace
while read -r url ; do
- # Skip anything that doesn't start wit HTTP
+ # Skip anything that doesn't start with HTTP
[[ $url == 'http'* ]] || continue
# Make initial request, log head and body to files, cry and skip on error