From: Tim Rühsen Date: Wed, 3 Apr 2019 15:16:18 +0000 (+0200) Subject: documentation: Fix several typos X-Git-Tag: curl-7_65_0~204 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b758e9835f120338c28c788b02cb4d68c76e7ea;p=thirdparty%2Fcurl.git documentation: Fix several typos Closes #3724 Reviewed-by: Jakub Zakrzewski Reviewed-by: Daniel Gustafsson --- diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index 875456f196..92956c6170 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -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 diff --git a/docs/TODO b/docs/TODO index 40bc726fc7..b6a35a7772 100644 --- a/docs/TODO +++ b/docs/TODO @@ -607,7 +607,7 @@ 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. diff --git a/docs/cmdline-opts/alt-svc.d b/docs/cmdline-opts/alt-svc.d index dfe636cfc8..ba2ded11cd 100644 --- a/docs/cmdline-opts/alt-svc.d +++ b/docs/cmdline-opts/alt-svc.d @@ -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 diff --git a/docs/libcurl/opts/CURLOPT_ALTSVC.3 b/docs/libcurl/opts/CURLOPT_ALTSVC.3 index d6b5d87f8b..a13edaae8a 100644 --- a/docs/libcurl/opts/CURLOPT_ALTSVC.3 +++ b/docs/libcurl/opts/CURLOPT_ALTSVC.3 @@ -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 diff --git a/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 b/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 index bdbb382a3c..c9575c9fe8 100644 --- a/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 +++ b/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 @@ -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 diff --git a/lib/http2.c b/lib/http2.c index b5c53cdf60..e0ec296895 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -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)