diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2018-02-23 23:29:01 +0000 |
---|---|---|
committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2018-02-23 23:29:01 +0000 |
commit | 7e35eb77292fe6464889ddc8329c6a64136f969d (patch) | |
tree | 76b1bdd02473d44be6773d0c61bbe8e98aeb8ffd /lib/mk-ca-bundle.vbs | |
parent | 06df42410e8829b70812b56664ab9fe3c77b683a (diff) | |
download | curl-7e35eb77292fe6464889ddc8329c6a64136f969d.tar.gz |
spelling fixes
Detected using the `codespell` tool.
Also contains one URL protocol upgrade.
Closes https://github.com/curl/curl/pull/2334
Diffstat (limited to 'lib/mk-ca-bundle.vbs')
-rwxr-xr-x | lib/mk-ca-bundle.vbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mk-ca-bundle.vbs b/lib/mk-ca-bundle.vbs index a9b983e9b..8da279268 100755 --- a/lib/mk-ca-bundle.vbs +++ b/lib/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.
|