From 450737f886050e486f518cdce0c97596ccad848d Mon Sep 17 00:00:00 2001 From: Hisashi Osanai Date: Tue, 15 Dec 2015 11:33:56 +0900 Subject: [PATCH] Fix a typo in development_auth.rst This patch uses correct name for "CORS". Change-Id: I5fee5c581a2b3adb7596a273baf05708bfa97f79 --- doc/source/development_auth.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/source/development_auth.rst b/doc/source/development_auth.rst index bb00ca8fc7..92b7c5aafa 100644 --- a/doc/source/development_auth.rst +++ b/doc/source/development_auth.rst @@ -487,7 +487,8 @@ folks a start on their own code if they want to use repoze.what:: Allowing CORS with Auth ----------------------- -Cross Origin RequestS require that the auth system allow the OPTIONS method to -pass through without a token. The preflight request will make an OPTIONS call -against the object or container and will not work if the auth system stops it. +Cross Origin Resource Sharing (CORS) require that the auth system allow the +OPTIONS method to pass through without a token. The preflight request will +make an OPTIONS call against the object or container and will not work if +the auth system stops it. See TempAuth for an example of how OPTIONS requests are handled.