fix(core): update

This commit is contained in:
2021-08-16 15:36:41 +02:00
parent aa78c3465a
commit 5734ca9444
14 changed files with 25164 additions and 839 deletions

View File

@@ -13,7 +13,7 @@ export class Status100 extends HttpStatus {
To have a server check the request's headers,
a client must send Expect: 100-continue as a header in its initial request and receive
a 100 Continue status code in response before sending the body.
The response 417 Expectation Failed indicates the request should not be continued.`
The response 417 Expectation Failed indicates the request should not be continued.`,
});
}
}
@@ -24,7 +24,7 @@ export class Status101 extends HttpStatus {
super({
code: 101,
text: 'Switching Protocols',
description: `The requester has asked the server to switch protocols and the server has agreed to do so.`
description: `The requester has asked the server to switch protocols and the server has agreed to do so.`,
});
}
}
@@ -39,7 +39,7 @@ export class Status102 extends HttpStatus {
requiring a long time to complete the request.
This code indicates that the server has received and is processing the request,
but no response is available yet.[6]
This prevents the client from timing out and assuming the request was lost.`
This prevents the client from timing out and assuming the request was lost.`,
});
}
}