aboutsummaryrefslogtreecommitdiff
path: root/src/base62.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/base62.rs')
-rw-r--r--src/base62.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/base62.rs b/src/base62.rs
index a556b13..a87503f 100644
--- a/src/base62.rs
+++ b/src/base62.rs
@@ -24,7 +24,6 @@ where I: Iterator<Item=u8> {
pub fn digits_to_string<'a, I>(x: I, alphabet: &'a [u8]) -> String
where I: Iterator<Item=u8> {
x.map(|d| alphabet[d as usize] as char).collect()
-
}
#[cfg(test)]