Skip to content

Commit ca7d850

Browse files
kud1inghuonw
authored andcommitted
---
yaml --- r: 94969 b: refs/heads/dist-snap c: d964f79 h: refs/heads/master i: 94967: 3789355 v: v3
1 parent a4ab6a5 commit ca7d850

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: d798e00337e72d5036a5c3cfd463c6ebb30d83d2
9+
refs/heads/dist-snap: d964f799987d3f14ad67582dc74f1e95026fb70f
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libextra/base64.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ use std::str;
1313

1414
/// Available encoding character sets
1515
pub enum CharacterSet {
16-
/// The standard character set (uses '+' and '/')
16+
/// The standard character set (uses `+` and `/`)
1717
Standard,
18-
/// The URL safe character set (uses '-' and '_')
18+
/// The URL safe character set (uses `-` and `_`)
1919
UrlSafe
2020
}
2121

22-
/// Contains configuration parameters for to_base64
22+
/// Contains configuration parameters for `to_base64`.
2323
pub struct Config {
2424
/// Character set to use
2525
char_set: CharacterSet,
26-
/// True to pad output with '=' characters
26+
/// True to pad output with `=` characters
2727
pad: bool,
28-
/// Some(len) to wrap lines at len, None to disable line wrapping
28+
/// `Some(len)` to wrap lines at `len`, `None` to disable line wrapping
2929
line_length: Option<uint>
3030
}
3131

0 commit comments

Comments
 (0)