Skip to content

Commit

Permalink
docs(SentrySdk): correct typo in code docs
Browse files Browse the repository at this point in the history
  • Loading branch information
YaMoef committed Sep 14, 2024
1 parent 9ad2caa commit d90d26e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Sentry/SentrySdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public static SentryId CaptureEvent(SentryEvent evt, SentryHint? hint, Action<Sc
/// Captures the exception.
/// </summary>
/// <param name="exception">The exception.</param>
/// <returns>The Id of the even.t</returns>
/// <returns>The Id of the event.</returns>
[DebuggerStepThrough]
public static SentryId CaptureException(Exception exception)
=> CurrentHub.CaptureException(exception);
Expand All @@ -453,7 +453,7 @@ public static SentryId CaptureException(Exception exception)
/// </remarks>
/// <param name="exception">The exception.</param>
/// <param name="configureScope">The callback to configure the scope.</param>
/// <returns>The Id of the even.t</returns>
/// <returns>The Id of the event.</returns>
[DebuggerStepThrough]
public static SentryId CaptureException(Exception exception, Action<Scope> configureScope)
=> CurrentHub.CaptureException(exception, configureScope);
Expand Down

0 comments on commit d90d26e

Please sign in to comment.