Skip to content

Commit 881f5d5

Browse files
SAY-5rolinh
authored andcommitted
http-client: fix 'occured' -> 'occurred' in error message
Error message in src/api/http-client/result.ts line 36 read 'Network error occured'. User-visible. Fixed to 'occurred'. String-literal-only change. Signed-off-by: SAY-5 <SAY-5@users.noreply.github.com>
1 parent 47edb38 commit 881f5d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/api/http-client/result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class HTTPResult<T = Blob> {
3333
}
3434

3535
public get errorMessage(): string {
36-
return this.isConnectionError ? 'Network error occured' : this.response.statusText;
36+
return this.isConnectionError ? 'Network error occurred' : this.response.statusText;
3737
}
3838

3939
public get headers(): Response['headers'] {

0 commit comments

Comments
 (0)