summaryrefslogtreecommitdiff
path: root/libs/libcurl/src/mk-ca-bundle.vbs
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libcurl/src/mk-ca-bundle.vbs')
-rw-r--r--libs/libcurl/src/mk-ca-bundle.vbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libcurl/src/mk-ca-bundle.vbs b/libs/libcurl/src/mk-ca-bundle.vbs
index da7a577ea7..bd4e4a35e6 100644
--- a/libs/libcurl/src/mk-ca-bundle.vbs
+++ b/libs/libcurl/src/mk-ca-bundle.vbs
@@ -314,7 +314,7 @@ Function RegExprFirst(SearchPattern, TheString)
Set objRegExp = New RegExp ' create a regular expression.
objRegExp.Pattern = SearchPattern ' sets the search pattern.
objRegExp.IgnoreCase = TRUE ' set to ignores case.
- objRegExp.Global = TRUE ' set to gloabal search.
+ objRegExp.Global = TRUE ' set to global search.
Set Matches = objRegExp.Execute(TheString) ' do the search.
If (Matches.Count) Then
RegExprFirst = Matches(0).SubMatches(0) ' return first match.