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