diff --git a/src/libextra/base64.rs b/src/libextra/base64.rs index f26554c42f4..c182a005f4b 100644 --- a/src/libextra/base64.rs +++ b/src/libextra/base64.rs @@ -13,19 +13,19 @@ /// Available encoding character sets pub enum CharacterSet { - /// The standard character set (uses '+' and '/') + /// The standard character set (uses `+` and `/`) Standard, - /// The URL safe character set (uses '-' and '_') + /// The URL safe character set (uses `-` and `_`) UrlSafe } -/// Contains configuration parameters for to_base64 +/// Contains configuration parameters for `to_base64`. pub struct Config { /// Character set to use char_set: CharacterSet, - /// True to pad output with '=' characters + /// True to pad output with `=` characters pad: bool, - /// Some(len) to wrap lines at len, None to disable line wrapping + /// `Some(len)` to wrap lines at `len`, `None` to disable line wrapping line_length: Option }