Skip to content

Commit 9a7ee3e

Browse files
committed
Fixed typo
1 parent a8ff608 commit 9a7ee3e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Exceptionless/Events/EventSubmissionEventArgsBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected EventSubmissionEventArgsBase(ExceptionlessClient client, Event data, C
2727
public ContextData PluginContextData { get; private set; }
2828

2929
/// <summary>
30-
/// Wether the event is an unhandled error.
30+
/// Whether the event is an unhandled error.
3131
/// </summary>
3232
public bool IsUnhandledError {
3333
get { return PluginContextData != null && PluginContextData.IsUnhandledError; }

src/Exceptionless/Events/EventSubmittingEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Exceptionless {
66
public class EventSubmittingEventArgs : EventSubmissionEventArgsBase {
77
public EventSubmittingEventArgs(ExceptionlessClient client, Event data, ContextData pluginContextData) : base(client, data, pluginContextData) {}
88
/// <summary>
9-
/// Wether the event should be canceled.
9+
/// Whether the event should be canceled.
1010
/// </summary>
1111
public bool Cancel { get; set; }
1212
}

src/Exceptionless/Models/Client/Data/RequestInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public RequestInfo() {
2020
public string HttpMethod { get; set; }
2121

2222
/// <summary>
23-
/// Wether the request was secure or not.
23+
/// Whether the request was secure or not.
2424
/// </summary>
2525
public bool IsSecure { get; set; }
2626

0 commit comments

Comments
 (0)