From 764e88a1ec22e9bd17decf24da78557da7411d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20D=C3=A9trez?= Date: Thu, 7 Nov 2019 16:18:50 +0100 Subject: [PATCH] Fix a small typo in CORS middleware documentation (#708) --- docs/middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/middleware.md b/docs/middleware.md index ce610ad0..70ef25ea 100644 --- a/docs/middleware.md +++ b/docs/middleware.md @@ -62,7 +62,7 @@ The middleware responds to two particular types of HTTP request... #### 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 appropriate CORS headers, and either a 200 or 400 response for informational purposes.