@@ -75,7 +75,7 @@ export class UnsupportedTransportError extends Error {
75
75
// eslint-disable-next-line @typescript-eslint/naming-convention
76
76
private __proto__ : Error ;
77
77
78
- /** The {@link @microsoft/signalr.HttpTransportType } this error occured on. */
78
+ /** The {@link @microsoft/signalr.HttpTransportType } this error occurred on. */
79
79
public transport : HttpTransportType ;
80
80
81
81
/** The type name of this error. */
@@ -84,7 +84,7 @@ export class UnsupportedTransportError extends Error {
84
84
/** Constructs a new instance of {@link @microsoft/signalr.UnsupportedTransportError }.
85
85
*
86
86
* @param {string } message A descriptive error message.
87
- * @param {HttpTransportType } transport The {@link @microsoft/signalr.HttpTransportType } this error occured on.
87
+ * @param {HttpTransportType } transport The {@link @microsoft/signalr.HttpTransportType } this error occurred on.
88
88
*/
89
89
constructor ( message : string , transport : HttpTransportType ) {
90
90
const trueProto = new . target . prototype ;
@@ -105,7 +105,7 @@ export class DisabledTransportError extends Error {
105
105
// eslint-disable-next-line @typescript-eslint/naming-convention
106
106
private __proto__ : Error ;
107
107
108
- /** The {@link @microsoft/signalr.HttpTransportType } this error occured on. */
108
+ /** The {@link @microsoft/signalr.HttpTransportType } this error occurred on. */
109
109
public transport : HttpTransportType ;
110
110
111
111
/** The type name of this error. */
@@ -114,7 +114,7 @@ export class DisabledTransportError extends Error {
114
114
/** Constructs a new instance of {@link @microsoft/signalr.DisabledTransportError }.
115
115
*
116
116
* @param {string } message A descriptive error message.
117
- * @param {HttpTransportType } transport The {@link @microsoft/signalr.HttpTransportType } this error occured on.
117
+ * @param {HttpTransportType } transport The {@link @microsoft/signalr.HttpTransportType } this error occurred on.
118
118
*/
119
119
constructor ( message : string , transport : HttpTransportType ) {
120
120
const trueProto = new . target . prototype ;
@@ -135,7 +135,7 @@ export class FailedToStartTransportError extends Error {
135
135
// eslint-disable-next-line @typescript-eslint/naming-convention
136
136
private __proto__ : Error ;
137
137
138
- /** The {@link @microsoft/signalr.HttpTransportType } this error occured on. */
138
+ /** The {@link @microsoft/signalr.HttpTransportType } this error occurred on. */
139
139
public transport : HttpTransportType ;
140
140
141
141
/** The type name of this error. */
@@ -144,7 +144,7 @@ export class FailedToStartTransportError extends Error {
144
144
/** Constructs a new instance of {@link @microsoft/signalr.FailedToStartTransportError }.
145
145
*
146
146
* @param {string } message A descriptive error message.
147
- * @param {HttpTransportType } transport The {@link @microsoft/signalr.HttpTransportType } this error occured on.
147
+ * @param {HttpTransportType } transport The {@link @microsoft/signalr.HttpTransportType } this error occurred on.
148
148
*/
149
149
constructor ( message : string , transport : HttpTransportType ) {
150
150
const trueProto = new . target . prototype ;
@@ -158,7 +158,7 @@ export class FailedToStartTransportError extends Error {
158
158
}
159
159
}
160
160
161
- /** Error thrown when multiple errors have occured . */
161
+ /** Error thrown when multiple errors have occurred . */
162
162
/** @private */
163
163
export class AggregateErrors extends Error {
164
164
// @ts -ignore: Intentionally unused.
0 commit comments