From d79730e58e3d6b5e864abbd4ecbfc5a90caed347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaspars=20Mick=C4=93vi=C4=8Ds?= Date: Sun, 7 Apr 2019 16:59:12 +0300 Subject: [PATCH] Typo fix: cores -> cors (#11884) --- aspnetcore/security/cors.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/security/cors.md b/aspnetcore/security/cors.md index 50f0a6d305..9399423f51 100644 --- a/aspnetcore/security/cors.md +++ b/aspnetcore/security/cors.md @@ -4,7 +4,7 @@ author: rick-anderson description: Learn how CORS as a standard for allowing or rejecting cross-origin requests in an ASP.NET Core app. ms.author: riande ms.custom: mvc -ms.date: 02/27/2019 +ms.date: 04/07/2019 uid: security/cors --- # Enable Cross-Origin Requests (CORS) in ASP.NET Core @@ -51,7 +51,7 @@ CORS Middleware handles cross-origin requests. The following code enables CORS f The preceding code: * Sets the policy name to "\_myAllowSpecificOrigins". The policy name is arbitrary. -* Calls the extension method, which enables cores. +* Calls the extension method, which enables CORS. * Calls with a [lambda expression](/dotnet/csharp/programming-guide/statements-expressions-operators/lambda-expressions). The lambda takes a object. [Configuration options](#cors-policy-options), such as `WithOrigins`, are described later in this article. The method call adds CORS services to the app's service container: