Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit ac66d52

Browse files
authored
oops
i had this locally and forgot to update
1 parent ab47be0 commit ac66d52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/base64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ impl<'a, T: ?Sized + FromBase64> FromBase64 for &'a T {
334334
/// ```
335335
/// let mut ch = 0u8;
336336
/// for ch in 0..255 {
337-
/// let ch = ch as u8;
337+
/// let mut ch = ch as u8;
338338
/// let code = match ch {
339339
/// b'A'...b'Z' => ch - 0x41,
340340
/// b'a'...b'z' => ch - 0x47,

0 commit comments

Comments
 (0)