Skip to content

Commit 6890a0e

Browse files
committed
Fix lint errors
1 parent 408d26c commit 6890a0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-monitor/snapshot-debugger/snapshot-debugger-vm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ using Microsoft.ApplicationInsights.SnapshotCollector;
9494
builder.Services.Configure<SnapshotCollectorConfiguration>(builder.Configuration.GetSection("SnapshotCollector"));
9595
```
9696

97-
Next, add a `SnapshotCollector` section to *appsettings.json* where you can override the defaults. The following example shows a configuration equivalent to the default configuration:
97+
Next, add a `SnapshotCollector` section to _appsettings.json_ where you can override the defaults. The following example shows a configuration equivalent to the default configuration:
9898

9999
```json
100100
{
@@ -114,7 +114,7 @@ Next, add a `SnapshotCollector` section to *appsettings.json* where you can over
114114
}
115115
```
116116

117-
If you need to customize the Snapshot Collector's behavior manually, without using *appsettings.json*, use the overload of `AddSnapshotCollector` that takes a delegate. For example:
117+
If you need to customize the Snapshot Collector's behavior manually, without using _appsettings.json_, use the overload of `AddSnapshotCollector` that takes a delegate. For example:
118118
```csharp
119119
builder.Services.AddSnapshotCollector(config => config.IsEnabledInDeveloperMode = true);
120120
```

0 commit comments

Comments
 (0)