Skip to content

Commit 8451b63

Browse files
committed
Fix typo in comments
1 parent d26e6bc commit 8451b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getssl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ DNS_WAIT_RETRY_ADD="false" # Try the dns_add_command again if the DNS recor
363363
validate_via_dns() { # Check dns validation. Return 0 if some domain, or the given domain, requires DNS validation.
364364
[[ -z $VALIDATE_VIA_DNS || $VALIDATE_VIA_DNS == "false" ]] && return 1
365365

366-
# Only dot and wilcard ard valid chars for a domain that should be escaped. Full match is ensured between espaces or commas.
366+
# Only dot and wilcard are valid chars for a domain that should be escaped. Full match is ensured between espaces or commas.
367367
local d=$1; d=${d//\./\\.}; d=${d//\*/\\*}
368368
[[ -z $1 || $VALIDATE_VIA_DNS =~ (true|(^|[ ,])${1//\./\\.}($|[ ,])) ]] && return 0
369369
}

0 commit comments

Comments
 (0)