From eade6712154a181d105216e4ed444620002e140f Mon Sep 17 00:00:00 2001 From: Ben <38633150+Ben9986@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:57:17 +0000 Subject: [PATCH] correct minor typo (#3033) I noticed this small typo when looking at a PR, hope you don't mind! --- src/util.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.d b/src/util.d index a97cc8547..6305eb8af 100644 --- a/src/util.d +++ b/src/util.d @@ -1498,7 +1498,7 @@ void checkOpenSSLVersion() { auto matches = versionString.match(versionRegex); if (matches.empty) { if (!versionString.empty) { - if (debugLogging) {addLogEntry("Unable to provided parse OpenSSL version: " ~ versionString, ["debug"]);} + if (debugLogging) {addLogEntry("Unable to parse provided OpenSSL version: " ~ versionString, ["debug"]);} } } else { // Extract major, minor, patch, and optional letter parts