]> granicus.if.org Git - curl/commitdiff
documentation: Fix several typos
authorTim Rühsen <tim.ruehsen@gmx.de>
Wed, 3 Apr 2019 15:16:18 +0000 (17:16 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Wed, 3 Apr 2019 20:06:06 +0000 (22:06 +0200)
Closes #3724
Reviewed-by: Jakub Zakrzewski
Reviewed-by: Daniel Gustafsson
docs/KNOWN_BUGS
docs/TODO
docs/cmdline-opts/alt-svc.d
docs/libcurl/opts/CURLOPT_ALTSVC.3
docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3
lib/http2.c

index 875456f1963cc392e232472cef36c7780ea0eeba..92956c6170771264d0ed613ab74b11d262bcead4 100644 (file)
@@ -162,7 +162,7 @@ problems may have been fixed or changed somewhat since this was written!
 
  There's a situation where we can get an error in a HTTP response that is
  compressed, when that error is detected after all the actual body contents
- have been received and delivered to the appliction. This is tricky, but is
+ have been received and delivered to the application. This is tricky, but is
  ultimately a broken server.
 
  See https://github.com/curl/curl/issues/2719
index 40bc726fc748d05e2d060f5d3ab3f7e54c3cf096..b6a35a77729fb0fbed8095eedbd214db1a0a15b7 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
 
 5.4 Allow SAN names in HTTP/2 server push
 
- curl only allows HTTP/2 push promise if the provided :autority header value
+ curl only allows HTTP/2 push promise if the provided :authority header value
  exactly matches the host name given in the URL. It could be extended to allow
  any name that would match the Subject Alternative Names in the server's TLS
  certificate.
index dfe636cfc8925e4e98da23785f158f8b1dcfd4c8..ba2ded11cd48dd740ce17e46aa34169b74b1c9b6 100644 (file)
@@ -10,7 +10,7 @@ This option enables the alt-svc parser in curl. If the file name points to an
 existing alt-svc cache file, that will be used. After a completed transfer,
 the cache will be saved to the file name again if it has been modified.
 
-Specifiy a "" file name (zero length) to avoid loading/saving and make curl
+Specify a "" file name (zero length) to avoid loading/saving and make curl
 just handle the cache in memory.
 
 If this option is used several times, curl will load contents from all the
index d6b5d87f8bb56d0b25a9160965627f3aa8d46da7..a13edaae8a67998cf8b4ac4ea6bb40e6fb3454c8 100644 (file)
@@ -31,7 +31,7 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_ALTSVC, char *filename);
 .fi
 .SH EXPERIMENTAL
 Warning: this feature is early code and is marked as experimental. It can only
-be enabled by explictly telling configure with \fB--enable-alt-svc\fP. You are
+be enabled by explicitly telling configure with \fB--enable-alt-svc\fP. You are
 advised to not ship this in production before the experimental label is
 removed.
 .SH DESCRIPTION
index bdbb382a3c165a8399b1e30cbdd755d943630d3b..c9575c9fe88e2a79f7ca78b3ea897ed46cd6f344 100644 (file)
@@ -38,7 +38,7 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_ALTSVC_CTRL, long bitmask);
 .fi
 .SH EXPERIMENTAL
 Warning: this feature is early code and is marked as experimental. It can only
-be enabled by explictly telling configure with \fB--enable-alt-svc\fP. You are
+be enabled by explicitly telling configure with \fB--enable-alt-svc\fP. You are
 advised to not ship this in production before the experimental label is
 removed.
 .SH DESCRIPTION
index b5c53cdf60299329882915e310f03e224db3281e..e0ec296895a7d264281aa02c74012d2007dafbaa 100644 (file)
@@ -970,7 +970,7 @@ static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
     char *h;
 
     if(!strcmp(":authority", (const char *)name)) {
-      /* psuedo headers are lower case */
+      /* pseudo headers are lower case */
       int rc = 0;
       char *check = aprintf("%s:%d", conn->host.name, conn->remote_port);
       if(!check)