Skip to content

Commit aae7342

Browse files
authored
Fix typo in SentryOptions.DefaultTags description (#4217)
1 parent 6be273b commit aae7342

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Sentry.Serilog/SentrySinkExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static class SentrySinkExtensions
3434
/// <param name="diagnosticLevel">The diagnostics level to be used. <seealso cref="SentryOptions.DiagnosticLevel"/></param>
3535
/// <param name="reportAssembliesMode">What mode to use for reporting referenced assemblies in each event sent to sentry. Defaults to <see cref="Sentry.ReportAssembliesMode.Version"/></param>
3636
/// <param name="deduplicateMode">What modes to use for event automatic de-duplication. <seealso cref="SentryOptions.DeduplicateMode"/></param>
37-
/// <param name="defaultTags">Defaults tags to add to all events. <seealso cref="SentryOptions.DefaultTags"/></param>
37+
/// <param name="defaultTags">Default tags to add to all events. <seealso cref="SentryOptions.DefaultTags"/></param>
3838
/// <returns><see cref="LoggerConfiguration"/></returns>
3939
/// <example>This sample shows how each item may be set from within a configuration file:
4040
/// <code>

src/Sentry/SentryOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ internal IFileSystem FileSystem
825825
public TimeSpan InitCacheFlushTimeout { get; set; } = TimeSpan.FromSeconds(1);
826826

827827
/// <summary>
828-
/// Defaults tags to add to all events. (These are indexed by Sentry).
828+
/// Default tags to add to all events. (These are indexed by Sentry).
829829
/// </summary>
830830
/// <remarks>
831831
/// If the key already exists in the event, it will not be overwritten by a default tag.

0 commit comments

Comments
 (0)