Fix spelling and grammar mistakes

This PR corrects misspellings identified by the check-spelling action.

The misspellings have been reported at jsoref@b6ba3e2#commitcomment-48946465

The action reports that the changes in this PR would make it happy: jsoref@602417c

Closes GH-6822.
This commit is contained in:
Josh Soref 2021-03-30 23:49:41 -04:00 committed by Nikita Popov
parent 02557e62c9
commit 462da6e09c
106 changed files with 248 additions and 245 deletions

View file

@ -189,7 +189,7 @@ php_apache_sapi_read_post(char *buf, size_t count_bytes)
/*
* This loop is needed because ap_get_brigade() can return us partial data
* which would cause premature termination of request read. Therefor we
* which would cause premature termination of request read. Therefore we
* need to make sure that if data is available we fill the buffer completely.
*/
@ -675,7 +675,7 @@ zend_first_try {
/*
* check if coming due to ErrorDocument
* We make a special exception of 413 (Invalid POST request) as the invalidity of the request occurs
* during processing of the request by PHP during POST processing. Therefor we need to re-use the exiting
* during processing of the request by PHP during POST processing. Therefore we need to re-use the exiting
* PHP instance to handle the request rather then creating a new one.
*/
if (parent_req && parent_req->status != HTTP_OK && parent_req->status != 413 && strcmp(r->protocol, "INCLUDED")) {