From 205e86dd349503af28b43b8c11b88b35eac19b2d Mon Sep 17 00:00:00 2001 From: Scott Addie Date: Wed, 28 Jun 2017 08:10:05 -0500 Subject: [PATCH] Add missing space between backticks --- ...ng-passwords-and-other-sensitive-data-to-aspnet-and-azure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/identity/overview/features-api/best-practices-for-deploying-passwords-and-other-sensitive-data-to-aspnet-and-azure.md b/aspnet/identity/overview/features-api/best-practices-for-deploying-passwords-and-other-sensitive-data-to-aspnet-and-azure.md index ea79cec463..b724eb364e 100644 --- a/aspnet/identity/overview/features-api/best-practices-for-deploying-passwords-and-other-sensitive-data-to-aspnet-and-azure.md +++ b/aspnet/identity/overview/features-api/best-practices-for-deploying-passwords-and-other-sensitive-data-to-aspnet-and-azure.md @@ -57,7 +57,7 @@ The ASP.NET runtime merges the contents of the external file with the markup in Visual Studio creates new ASP.NET projects that use [LocalDB](https://blogs.msdn.com/b/sqlexpress/archive/2011/07/12/introducing-localdb-a-better-sql-express.aspx). LocalDB was created specifically for the development environment. It doesn't require a password, therefore you don't need to do anything to prevent secrets from being checked into your source code. Some development teams use the full versions of SQL Server (or other DBMS) that require a password. -You can use the `configSource` attribute to replace the entire `` markup. Unlike the ```file` attribute that merges the markup, the `configSource` attribute replaces the markup. The following markup shows the `configSource` attribute in the *web.config* file: +You can use the `configSource` attribute to replace the entire `` markup. Unlike the `` `file` attribute that merges the markup, the `configSource` attribute replaces the markup. The following markup shows the `configSource` attribute in the *web.config* file: [!code-xml[Main](best-practices-for-deploying-passwords-and-other-sensitive-data-to-aspnet-and-azure/samples/sample4.xml?highlight=1)]