diff --git a/docs/platforms/dotnet/common/configuration/heap-dumps.mdx b/docs/platforms/dotnet/common/configuration/heap-dumps.mdx index 044b4ea72f1a6..3a0f00bc1f8a8 100644 --- a/docs/platforms/dotnet/common/configuration/heap-dumps.mdx +++ b/docs/platforms/dotnet/common/configuration/heap-dumps.mdx @@ -24,8 +24,7 @@ options => { // Limit heap dumps to 3 per day with at least 2 hours between each event Debouncer.PerDay(3, TimeSpan.FromHours(2)), // Set the level for heap dump events to Warning - SentryLevel.Warning - ); + SentryLevel.Warning); } ``` @@ -45,8 +44,7 @@ options => { // Limit heap dumps to 3 per day with at least 2 hours between each event Debouncer.PerDay(3, TimeSpan.FromHours(2)), // Set the level for heap dump events to Warning - SentryLevel.Warning - ); + SentryLevel.Warning); } ```