From 034c5d7f8a72649e1814576049ff7c8b1112511c Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Mon, 17 Jun 2019 13:26:21 -0400 Subject: [PATCH] fix: MD039/no-space-in-links (#12858) Spaces inside link text --- .../data-protection/implementation/key-storage-providers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/security/data-protection/implementation/key-storage-providers.md b/aspnetcore/security/data-protection/implementation/key-storage-providers.md index 742a91ebeb..9cacfbe8e8 100644 --- a/aspnetcore/security/data-protection/implementation/key-storage-providers.md +++ b/aspnetcore/security/data-protection/implementation/key-storage-providers.md @@ -31,7 +31,7 @@ The `DirectoryInfo` can point to a directory on the local machine, or it can poi The [Microsoft.AspNetCore.DataProtection.AzureStorage](https://www.nuget.org/packages/Microsoft.AspNetCore.DataProtection.AzureStorage/) package allows storing data protection keys in Azure Blob Storage. Keys can be shared across several instances of a web app. Apps can share authentication cookies or CSRF protection across multiple servers. -To configure the Azure Blob Storage provider, call one of the [PersistKeysToAzureBlobStorage](/dotnet/api/microsoft.aspnetcore.dataprotection.azuredataprotectionbuilderextensions.persistkeystoazureblobstorage) overloads. +To configure the Azure Blob Storage provider, call one of the [PersistKeysToAzureBlobStorage](/dotnet/api/microsoft.aspnetcore.dataprotection.azuredataprotectionbuilderextensions.persistkeystoazureblobstorage) overloads. ```csharp public void ConfigureServices(IServiceCollection services) @@ -41,7 +41,7 @@ public void ConfigureServices(IServiceCollection services) } ``` -If the web app is running as an Azure service, authentication tokens can be automatically created using [ Microsoft.Azure.Services.AppAuthentication](https://www.nuget.org/packages/Microsoft.Azure.Services.AppAuthentication/). +If the web app is running as an Azure service, authentication tokens can be automatically created using [Microsoft.Azure.Services.AppAuthentication](https://www.nuget.org/packages/Microsoft.Azure.Services.AppAuthentication/). ```csharp var tokenProvider = new AzureServiceTokenProvider(); @@ -143,7 +143,7 @@ The generic parameter, `TContext`, must inherit from [DbContext](/dotnet/api/mic [!code-csharp[Main](key-storage-providers/sample/MyKeysContext.cs)] -Create the `DataProtectionKeys` table. +Create the `DataProtectionKeys` table. # [Visual Studio](#tab/visual-studio)