about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGeoffroy Couprie <geo.couprie@gmail.com>2013-09-20 15:17:32 +0200
committerGeoffroy Couprie <geo.couprie@gmail.com>2013-10-09 18:36:51 +0200
commit0b4f052422829106b0aadb3b66af671b4e0a0c99 (patch)
tree49768dc0e286a7c1b7a5e9a34a1458fbf325c490
parente505d4c3535d6e0af1070b1b50ec8db4c2eca827 (diff)
downloadrust-0b4f052422829106b0aadb3b66af671b4e0a0c99.tar.gz
rust-0b4f052422829106b0aadb3b66af671b4e0a0c99.zip
Correct code examples for base64 documentation
-rw-r--r--src/libextra/base64.rs23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/libextra/base64.rs b/src/libextra/base64.rs
index 2b18c27f560..5d9c38c9543 100644
--- a/src/libextra/base64.rs
+++ b/src/libextra/base64.rs
@@ -64,11 +64,11 @@ impl<'self> ToBase64 for &'self [u8] {
      *
      * ```rust
      * extern mod extra;
-     * use extra::base64::{ToBase64, standard};
+     * use extra::base64::{ToBase64, STANDARD};
      *
      * fn main () {
-     *     let str = [52,32].to_base64(standard);
-     *     println!("{}", str);
+     *     let str = [52,32].to_base64(STANDARD);
+     *     println!("base 64 output: {}", str);
      * }
      * ```
      */
@@ -172,16 +172,19 @@ impl<'self> FromBase64 for &'self str {
      *
      * ```rust
      * extern mod extra;
-     * use extra::base64::{ToBase64, FromBase64, standard};
+     * use extra::base64::{ToBase64, FromBase64, STANDARD};
      * use std::str;
      *
      * fn main () {
-     *     let hello_str = "Hello, World".to_base64(standard);
-     *     println!("{}", hello_str);
-     *     let bytes = hello_str.from_base64();
-     *     println!("{:?}", bytes);
-     *     let result_str = str::from_utf8(bytes);
-     *     println!("{}", result_str);
+     *     let hello_str = bytes!("Hello, World").to_base64(STANDARD);
+     *     println!("base64 output: {}", hello_str);
+     *     let res = hello_str.from_base64();
+     *     if res.is_ok() {
+     *       let optBytes = str::from_utf8_opt(res.unwrap());
+     *       if optBytes.is_some() {
+     *         println!("decoded from base64: {}", optBytes.unwrap());
+     *       }
+     *     }
      * }
      * ```
      */