From 1a0216283338c6880b4331336f3d86db175ab2bc Mon Sep 17 00:00:00 2001 From: Bruno Garcia Date: Mon, 12 May 2025 18:27:37 -0400 Subject: [PATCH] nitpick csharp code snippet --- docs/platforms/dotnet/common/configuration/heap-dumps.mdx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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); } ```