Skip to content

Commit 691baa9

Browse files
committed
Fixed typos
1 parent abd7487 commit 691baa9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Exceptionless/Extensions/DataDictionaryExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static T GetValue<T>(this DataDictionary items, string key, IJsonSerializ
3434
/// <param name="value">The property value to add.</param>
3535
/// <param name="maxDepth">The max depth of the object to include. Used when the property value is an object.</param>
3636
/// <param name="excludedPropertyNames">Any property names that should be excluded in complex object values.</param>
37-
/// <param name="ignoreSerializationErrors">Specifies wether complex object properties that throw errors while serializing be ignored</param>
37+
/// <param name="ignoreSerializationErrors">Specifies whether complex object properties that throw errors while serializing be ignored</param>
3838
/// <param name="client">
3939
/// The ExceptionlessClient instance used for configuration. If a client is not specified, it will use
4040
/// ExceptionlessClient.Default.
@@ -54,7 +54,7 @@ public static void SetProperty(this IData target, string name, object value, int
5454
/// <param name="name">The name of the object to add. If not specified, the name will be implied from the object type.</param>
5555
/// <param name="maxDepth">The max depth of the object to include.</param>
5656
/// <param name="excludedPropertyNames">Any property names that should be excluded</param>
57-
/// <param name="ignoreSerializationErrors">Specifies wether properties that throw errors while serializing be ignored</param>
57+
/// <param name="ignoreSerializationErrors">Specifies whether properties that throw errors while serializing be ignored</param>
5858
/// <param name="client">
5959
/// The ExceptionlessClient instance used for configuration. If a client is not specified, it will use
6060
/// ExceptionlessClient.Default.

src/Exceptionless/Extensions/EventExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Globalization;
44
using System.Linq;
@@ -25,7 +25,7 @@ public static EnvironmentInfo GetEnvironmentInfo(this Event ev, IJsonSerializer
2525
}
2626

2727
/// <summary>
28-
/// Indicates wether the event has been marked as critical.
28+
/// Indicates whether the event has been marked as critical.
2929
/// </summary>
3030
public static bool IsCritical(this Event ev) {
3131
return ev.Tags != null && ev.Tags.Contains(Event.KnownTags.Critical);

0 commit comments

Comments
 (0)