File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -330,14 +330,14 @@ interface types {
330
330
331
331
/// Set the timeout for the initial connect to the HTTP Server. An error
332
332
/// return value indicates that this timeout is not supported.
333
- set-connect-timeout : func (ms : option <duration >) -> result ;
333
+ set-connect-timeout : func (duration : option <duration >) -> result ;
334
334
335
335
/// The timeout for receiving the first byte of the Response body.
336
336
first-byte-timeout : func () -> option <duration >;
337
337
338
338
/// Set the timeout for receiving the first byte of the Response body. An
339
339
/// error return value indicates that this timeout is not supported.
340
- set-first-byte-timeout : func (ms : option <duration >) -> result ;
340
+ set-first-byte-timeout : func (duration : option <duration >) -> result ;
341
341
342
342
/// The timeout for receiving subsequent chunks of bytes in the Response
343
343
/// body stream.
@@ -346,7 +346,7 @@ interface types {
346
346
/// Set the timeout for receiving subsequent chunks of bytes in the Response
347
347
/// body stream. An error return value indicates that this timeout is not
348
348
/// supported.
349
- set-between-bytes-timeout : func (ms : option <duration >) -> result ;
349
+ set-between-bytes-timeout : func (duration : option <duration >) -> result ;
350
350
}
351
351
352
352
/// Represents the ability to send an HTTP Response.
You can’t perform that action at this time.
0 commit comments