1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

scripts: fix typos

This commit is contained in:
Daniel Gustafsson 2019-03-31 22:39:29 +02:00
parent e413baffdc
commit a92e9f578f
2 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___ # | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____| # \___|\___/|_| \_\_____|
# #
# Copyright (C) 2018, Daniel Stenberg, <daniel@haxx.se>, et al. # Copyright (C) 2018-2019, Daniel Stenberg, <daniel@haxx.se>, et al.
# #
# This software is licensed as described in the file COPYING, which # This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms # you should have received as part of this distribution. The terms
@ -21,7 +21,7 @@
# #
########################################################################### ###########################################################################
# Display changes done in the respository from [tag] until now. # Display changes done in the repository from [tag] until now.
# #
# Uses git for repo data. # Uses git for repo data.
# Uses docs/THANKS and RELEASE-NOTES for current status. # Uses docs/THANKS and RELEASE-NOTES for current status.
@ -79,7 +79,7 @@ $apublic=`git grep ^CURL_EXTERN -- include/curl | wc -l`;
$bpublic=`git grep ^CURL_EXTERN $start -- include/curl | wc -l`; $bpublic=`git grep ^CURL_EXTERN $start -- include/curl | wc -l`;
$public = $apublic - $bpublic; $public = $apublic - $bpublic;
# Changes/bug-fixes currenly logged # Changes/bug-fixes currently logged
open(F, "<RELEASE-NOTES"); open(F, "<RELEASE-NOTES");
while(<F>) { while(<F>) {
if($_ =~ /following changes:/) { if($_ =~ /following changes:/) {

View File

@ -143,7 +143,7 @@ my %api = (
'curl_version' => 'API', 'curl_version' => 'API',
'curl_version_info' => 'API', 'curl_version_info' => 'API',
# the following funcions are provided globally in debug builds # the following functions are provided globally in debug builds
'curl_easy_perform_ev' => 'debug-build', 'curl_easy_perform_ev' => 'debug-build',
); );