Skip to content

Commit 808d6da

Browse files
committed
Linter fixes
1 parent 515a733 commit 808d6da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-cache-for-redis/cache-aspnetcore-output-cache-provider.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dotnet add package Microsoft.AspNetCore.OutputCaching.StackExchangeRedis
6969
7070
If prompted, select **Yes I trust the author** to proceed.
7171
72-
1. Open *Program.cs* file.
72+
1. Open _Program.cs_ file.
7373
7474
1. Add the following function calls. `AddStackExchangeRedisOutputCache()`, `AddOutputCache()`, `UseOutputCache()`.
7575
@@ -96,7 +96,7 @@ dotnet add package Microsoft.AspNetCore.OutputCaching.StackExchangeRedis
9696
9797
```
9898
99-
1. Save the *Program.cs* file. Make sure the application builds with no error in the Command Prompt.
99+
1. Save the _Program.cs_ file. Make sure the application builds with no error in the Command Prompt.
100100
101101
```cmd
102102
dotnet build
@@ -113,7 +113,7 @@ dotnet add package Microsoft.AspNetCore.OutputCaching.StackExchangeRedis
113113
app.MapGet("/cached",()=> "Hello Redis Output Cache" + DateTime.Now).CacheOutput();
114114
```
115115
116-
1. Save the *Program.cs* file. Make sure the application builds with no error in the Command Prompt.
116+
1. Save the _program.cs_ file. Make sure the application builds with no error in the Command Prompt.
117117
118118
```cmd
119119
dotnet build

0 commit comments

Comments
 (0)