File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1069,7 +1069,7 @@ return value indicates that this timeout is not supported.</p>
1069
1069
<h5 >Params</h5 >
1070
1070
<ul >
1071
1071
<li ><a name =" method_request_options.set_connect_timeout.self " ><code >self</code ></a >: borrow< ; <a href =" #request_options " ><a href =" #request_options " ><code >request-options</code ></a ></a >> ; </li >
1072
- <li ><a name =" method_request_options.set_connect_timeout.ms " ><code >ms </code ></a >: option< ; <a href =" #duration " ><a href =" #duration " ><code >duration</code ></a ></a >> ; </li >
1072
+ <li ><a name =" method_request_options.set_connect_timeout.duration " ><a href = " #duration " >< code >duration </code ></ a ></a >: option< ; <a href =" #duration " ><a href =" #duration " ><code >duration</code ></a ></a >> ; </li >
1073
1073
</ul >
1074
1074
<h5 >Return values</h5 >
1075
1075
<ul >
@@ -1091,7 +1091,7 @@ error return value indicates that this timeout is not supported.</p>
1091
1091
<h5 >Params</h5 >
1092
1092
<ul >
1093
1093
<li ><a name =" method_request_options.set_first_byte_timeout.self " ><code >self</code ></a >: borrow< ; <a href =" #request_options " ><a href =" #request_options " ><code >request-options</code ></a ></a >> ; </li >
1094
- <li ><a name =" method_request_options.set_first_byte_timeout.ms " ><code >ms </code ></a >: option< ; <a href =" #duration " ><a href =" #duration " ><code >duration</code ></a ></a >> ; </li >
1094
+ <li ><a name =" method_request_options.set_first_byte_timeout.duration " ><a href = " #duration " >< code >duration </code ></ a ></a >: option< ; <a href =" #duration " ><a href =" #duration " ><code >duration</code ></a ></a >> ; </li >
1095
1095
</ul >
1096
1096
<h5 >Return values</h5 >
1097
1097
<ul >
@@ -1115,7 +1115,7 @@ supported.</p>
1115
1115
<h5 >Params</h5 >
1116
1116
<ul >
1117
1117
<li ><a name =" method_request_options.set_between_bytes_timeout.self " ><code >self</code ></a >: borrow< ; <a href =" #request_options " ><a href =" #request_options " ><code >request-options</code ></a ></a >> ; </li >
1118
- <li ><a name =" method_request_options.set_between_bytes_timeout.ms " ><code >ms </code ></a >: option< ; <a href =" #duration " ><a href =" #duration " ><code >duration</code ></a ></a >> ; </li >
1118
+ <li ><a name =" method_request_options.set_between_bytes_timeout.duration " ><a href = " #duration " >< code >duration </code ></ a ></a >: option< ; <a href =" #duration " ><a href =" #duration " ><code >duration</code ></a ></a >> ; </li >
1119
1119
</ul >
1120
1120
<h5 >Return values</h5 >
1121
1121
<ul >
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