Skip to content

Commit

Permalink
auto merge of #10931 : sfackler/rust/base64-visibility, r=alexcrichton
Browse files Browse the repository at this point in the history
These got swept up in the great privatizing of 2013.
  • Loading branch information
bors committed Dec 14, 2013
2 parents 0b1fb89 + 9762698 commit 8440036
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libextra/base64.rs
Expand Up @@ -22,11 +22,11 @@ pub enum CharacterSet {
/// Contains configuration parameters for `to_base64`.
pub struct Config {
/// Character set to use
priv char_set: CharacterSet,
char_set: CharacterSet,
/// True to pad output with `=` characters
priv pad: bool,
pad: bool,
/// `Some(len)` to wrap lines at `len`, `None` to disable line wrapping
priv line_length: Option<uint>
line_length: Option<uint>
}

/// Configuration for RFC 4648 standard base64 encoding
Expand Down

0 comments on commit 8440036

Please sign in to comment.