]> granicus.if.org Git - curl/commitdiff
scripts: fix typos
authorDaniel Gustafsson <daniel@yesql.se>
Sun, 31 Mar 2019 20:39:29 +0000 (22:39 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Sun, 31 Mar 2019 20:55:09 +0000 (22:55 +0200)
scripts/delta
scripts/singleuse.pl

index 3318a58ef942cd385e23b9b034ae16fac95f86d6..81de753385efab1e162f7f030fe8cbdecced3713 100755 (executable)
@@ -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
 # 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 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`;
 $public = $apublic - $bpublic;
 
-# Changes/bug-fixes currenly logged
+# Changes/bug-fixes currently logged
 open(F, "<RELEASE-NOTES");
 while(<F>) {
     if($_ =~ /following changes:/) {
index 148aebe9dc60a7f87c674aec81d55ebf6a54ef7d..0a5876a726d2be251ee44b7aa3e6dbf65b3594b4 100755 (executable)
@@ -143,7 +143,7 @@ my %api = (
     'curl_version' => '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',
     );