Skip to content

Commit 3e2ffad

Browse files
authored
Fix code block indentation in markdown (#17)
* Fix code block indentation in markdown * Update cache-dotnet-how-to-use-azure-redis-cache.md * Update cache-web-app-howto.md * Update cache-web-app-aspnet-core-howto.md
1 parent ff6c097 commit 3e2ffad

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

articles/azure-cache-for-redis/cache-dotnet-core-quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ dotnet add package Microsoft.Azure.StackExchangeRedis
5555

5656
1. Include the libraries in your code
5757

58-
```csharp
59-
using Azure.Identity;
60-
using StackExchange.Redis
61-
```
58+
```csharp
59+
using Azure.Identity;
60+
using StackExchange.Redis
61+
```
6262

6363
1. Using the default Azure credentials to authenticate the client connection. This enables your code to use the signed-in user credential when running locally, and an Azure managed identity when running in Azure without code change.
6464

articles/azure-cache-for-redis/cache-dotnet-how-to-use-azure-redis-cache.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ The [Azure.StackExchange.Redis](https://www.nuget.org/packages/Microsoft.Azure.S
6262

6363
1. Include the libraries in your code
6464

65-
```csharp
66-
using Azure.Identity;
67-
using StackExchange.Redis
68-
```
65+
```csharp
66+
using Azure.Identity;
67+
using StackExchange.Redis
68+
```
6969

7070
1. Using the default Azure credentials to authenticate the client connection. This enables your code to use the signed-in user credential when running locally, and an Azure managed identity when running in Azure without code change.
7171

articles/azure-cache-for-redis/cache-web-app-aspnet-core-howto.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ dotnet add package Microsoft.Azure.StackExchangeRedis
6767

6868
1. Include the libraries in your code
6969

70-
```csharp
71-
using Azure.Identity;
72-
using StackExchange.Redis
73-
```
70+
```csharp
71+
using Azure.Identity;
72+
using StackExchange.Redis
73+
```
7474

7575
1. Using the default Azure credentials to authenticate the client connection. This enables your code to use the signed-in user credential when running locally, and an Azure managed identity when running in Azure without code change.
7676

articles/azure-cache-for-redis/cache-web-app-howto.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ The [Azure.StackExchange.Redis](https://www.nuget.org/packages/Microsoft.Azure.S
6161

6262
1. Include the libraries in your code
6363

64-
```
65-
using Azure.Identity;
66-
using StackExchange.Redis
67-
```
64+
```
65+
using Azure.Identity;
66+
using StackExchange.Redis
67+
```
6868

6969
1. Using the default Azure credentials to authenticate the client connection. This enables your code to use the signed-in user credential when running locally, and an Azure managed identity when running in Azure without code change.
7070

0 commit comments

Comments
 (0)