Fix a small typo in CORS middleware documentation (#708)

This commit is contained in:
Grégoire Détrez 2019-11-07 16:18:50 +01:00 committed by Tom Christie
parent 5613fa7e12
commit 764e88a1ec
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ The middleware responds to two particular types of HTTP request...
#### CORS preflight requests #### CORS preflight requests
These are any `OPTION` request with `Origin` and `Access-Control-Request-Method` headers. These are any `OPTIONS` request with `Origin` and `Access-Control-Request-Method` headers.
In this case the middleware will intercept the incoming request and respond with In this case the middleware will intercept the incoming request and respond with
appropriate CORS headers, and either a 200 or 400 response for informational purposes. appropriate CORS headers, and either a 200 or 400 response for informational purposes.