@@ -191,7 +191,7 @@ interface types {
191
191
append : func (name : field-key , value : field-value ) -> result <_ , header-error >;
192
192
193
193
/// Retrieve the full set of keys and values in the Fields. Like the
194
- /// constructor, the list represents each key-value pair.
194
+ /// constructor, the list represents each key-value pair.
195
195
///
196
196
/// The outer list represents each key-value pair in the Fields. Keys
197
197
/// which have multiple values are represented by multiple entries in this
@@ -319,27 +319,27 @@ interface types {
319
319
constructor ();
320
320
321
321
/// The timeout for the initial connect to the HTTP Server.
322
- connect-timeout-ms : func () -> option <duration >;
322
+ connect-timeout : func () -> option <duration >;
323
323
324
324
/// Set the timeout for the initial connect to the HTTP Server. An error
325
325
/// return value indicates that this timeout is not supported.
326
- set-connect-timeout-ms : func (ms : option <duration >) -> result ;
326
+ set-connect-timeout : func (ms : option <duration >) -> result ;
327
327
328
328
/// The timeout for receiving the first byte of the Response body.
329
- first-byte-timeout-ms : func () -> option <duration >;
329
+ first-byte-timeout : func () -> option <duration >;
330
330
331
331
/// Set the timeout for receiving the first byte of the Response body. An
332
332
/// error return value indicates that this timeout is not supported.
333
- set-first-byte-timeout-ms : func (ms : option <duration >) -> result ;
333
+ set-first-byte-timeout : func (ms : option <duration >) -> result ;
334
334
335
335
/// The timeout for receiving subsequent chunks of bytes in the Response
336
336
/// body stream.
337
- between-bytes-timeout-ms : func () -> option <duration >;
337
+ between-bytes-timeout : func () -> option <duration >;
338
338
339
339
/// Set the timeout for receiving subsequent chunks of bytes in the Response
340
340
/// body stream. An error return value indicates that this timeout is not
341
341
/// supported.
342
- set-between-bytes-timeout-ms : func (ms : option <duration >) -> result ;
342
+ set-between-bytes-timeout : func (ms : option <duration >) -> result ;
343
343
}
344
344
345
345
/// Represents the ability to send an HTTP Response.
0 commit comments