From: Mike Rumph Date: Tue, 30 Dec 2014 17:43:59 +0000 (+0000) Subject: Fix some spelling errors in mod_proxy_fcgi comments. X-Git-Tag: 2.5.0-alpha~3580 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98efe0ccb148c32c1b17e4e5ed1d11fb652ed2ba;p=apache Fix some spelling errors in mod_proxy_fcgi comments. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1648557 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_fcgi.c b/modules/proxy/mod_proxy_fcgi.c index 3e6aba66b1..56e4977128 100644 --- a/modules/proxy/mod_proxy_fcgi.c +++ b/modules/proxy/mod_proxy_fcgi.c @@ -706,7 +706,7 @@ recv_again: apr_brigade_cleanup(ob); } - /* If we didn't read all the data go back and get the + /* If we didn't read all the data, go back and get the * rest of it. */ if (clen > readbuflen) { clen -= readbuflen; @@ -788,7 +788,7 @@ static int fcgi_do_request(apr_pool_t *p, request_rec *r, char *url, char *server_portstr) { /* Request IDs are arbitrary numbers that we assign to a - * single request. This would allow multiplex/pipelinig of + * single request. This would allow multiplex/pipelining of * multiple requests to the same FastCGI connection, but * we don't support that, and always use a value of '1' to * keep things simple. */ @@ -889,7 +889,7 @@ static int proxy_fcgi_handler(request_rec *r, proxy_worker *worker, } /* This scheme handler does not reuse connections by default, to - * avoid tieing up a fastcgi that isn't expecting to work on + * avoid tying up a fastcgi that isn't expecting to work on * parallel requests. But if the user went out of their way to * type the default value of disablereuse=off, we'll allow it. */