1
Fork 0

Minor docs adjustement

This commit is contained in:
Drew DeVault 2023-02-12 13:07:53 +01:00
parent 5d39543fcf
commit 2ea358ae35

View file

@ -8,13 +8,13 @@ use types;
// Configures the Transport-Encoding behavior.
//
// If set to "none", no transport decoding or encoding is performed on the
// message body, irrespective of the value of the Transport-Encoding header. The
// user must perform any required encoding or decoding themselves in this mode.
// If set to "auto", the implementation will examine the Transport-Encoding
// header and encode the message body appropriately.
// If set to NONE, no transport decoding or encoding is performed on the message
// body, irrespective of the value of the Transport-Encoding header. The user
// must perform any required encoding or decoding themselves in this mode. If
// set to AUTO, the implementation will examine the Transport-Encoding header
// and encode the message body appropriately.
//
// Most users will want this to be set to "auto".
// Most users will want this to be set to auto.
//
// TODO: Document server behavior
export type transport_mode = enum {
@ -24,13 +24,13 @@ export type transport_mode = enum {
// Configures the Content-Encoding behavior.
//
// If set to "none", no transport decoding or encoding is performed on the
// message body, irrespective of the value of the Content-Encoding header. The
// user must perform any required encoding or decoding themselves in this mode.
// If set to "auto", the implementation will examine the Content-Encoding header
// and encode the message body appropriately.
// If set to NONE, no transport decoding or encoding is performed on the message
// body, irrespective of the value of the Content-Encoding header. The user must
// perform any required encoding or decoding themselves in this mode. If set to
// AUTO, the implementation will examine the Content-Encoding header and encode
// the message body appropriately.
//
// Most users will want this to be set to "auto".
// Most users will want this to be set to AUTO.
//
// TODO: Document server behavior
export type content_mode = enum {