diff options
| author | Palmer Cox <p@lmercox.com> | 2014-02-15 16:15:03 -0500 |
|---|---|---|
| committer | Palmer Cox <p@lmercox.com> | 2014-03-04 21:23:36 -0500 |
| commit | 6d9bdf975aba3cd2f571f4e3695136f2ee85f37f (patch) | |
| tree | e081c4b83e625ca10d85c7aa3e74d6b8b3066fa4 /src/libserialize/base64.rs | |
| parent | fe50c75d02c9b41bcda28596077b1122a89bee5d (diff) | |
| download | rust-6d9bdf975aba3cd2f571f4e3695136f2ee85f37f.tar.gz rust-6d9bdf975aba3cd2f571f4e3695136f2ee85f37f.zip | |
Rename all variables that have uppercase characters in their names to use only lowercase characters
Diffstat (limited to 'src/libserialize/base64.rs')
| -rw-r--r-- | src/libserialize/base64.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libserialize/base64.rs b/src/libserialize/base64.rs index f43c62f6ffc..ea9a922f224 100644 --- a/src/libserialize/base64.rs +++ b/src/libserialize/base64.rs @@ -199,9 +199,9 @@ impl<'a> FromBase64 for &'a str { * println!("base64 output: {}", hello_str); * let res = hello_str.from_base64(); * if res.is_ok() { - * let optBytes = str::from_utf8_owned(res.unwrap()); - * if optBytes.is_some() { - * println!("decoded from base64: {}", optBytes.unwrap()); + * let opt_bytes = str::from_utf8_owned(res.unwrap()); + * if opt_bytes.is_some() { + * println!("decoded from base64: {}", opt_bytes.unwrap()); * } * } * } |
