Skip to content

Commit 815e3d2

Browse files
authored
Merge pull request #49153 from jawn/patch-3
Remove backticks to fix code samples
2 parents abd28b0 + 5debb5a commit 815e3d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-monitor/app/ilogger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The code in step 2 configures `ApplicationInsightsLoggerProvider`. The following
7474
```csharp
7575
public class ValuesController : ControllerBase
7676
{
77-
private readonly `ILogger` _logger;
77+
private readonly ILogger _logger;
7878

7979
public ValuesController(ILogger<ValuesController> logger)
8080
{
@@ -155,7 +155,7 @@ public class Program
155155
```csharp
156156
public class Startup
157157
{
158-
private readonly `ILogger` _logger;
158+
private readonly ILogger _logger;
159159

160160
public Startup(IConfiguration configuration, ILogger<Startup> logger)
161161
{

0 commit comments

Comments
 (0)