@@ -37,8 +37,8 @@ impl<'self> ToBase64 for &'self [u8] {
37
37
* use std::base64::ToBase64;
38
38
*
39
39
* fn main () {
40
- * let str = [52,32].to_base64();
41
- * println(fmt!("%s", str));
40
+ * let str = [52,32].to_base64();
41
+ * println(fmt!("%s", str));
42
42
* }
43
43
* ~~~~
44
44
*/
@@ -102,8 +102,8 @@ impl<'self> ToBase64 for &'self str {
102
102
* use std::base64::ToBase64;
103
103
*
104
104
* fn main () {
105
- * let str = " Hello , World ".to_base64();
106
- * println(fmt!(" %s",str));
105
+ * let str = " Hello , World ".to_base64();
106
+ * println(fmt!(" %s",str));
107
107
* }
108
108
* ~~~~
109
109
*
@@ -130,10 +130,10 @@ impl FromBase64 for ~[u8] {
130
130
* use std::base64::FromBase64;
131
131
*
132
132
* fn main () {
133
- * let str = [52,32].to_base64();
134
- * println(fmt!(" %s", str));
135
- * let bytes = str.from_base64();
136
- * println(fmt!(" %?",bytes));
133
+ * let str = [52,32].to_base64();
134
+ * println(fmt!(" %s", str));
135
+ * let bytes = str.from_base64();
136
+ * println(fmt!(" %?",bytes));
137
137
* }
138
138
* ~~~~
139
139
*/
@@ -217,12 +217,12 @@ impl FromBase64 for ~str {
217
217
* use core::str;
218
218
*
219
219
* fn main () {
220
- * let hello_str = " Hello , World ".to_base64();
221
- * println(fmt!(" %s",hello_str));
222
- * let bytes = hello_str.from_base64();
223
- * println(fmt!(" %?",bytes));
224
- * let result_str = str::from_bytes(bytes);
225
- * println(fmt!(" %s",result_str));
220
+ * let hello_str = " Hello , World ".to_base64();
221
+ * println(fmt!(" %s",hello_str));
222
+ * let bytes = hello_str.from_base64();
223
+ * println(fmt!(" %?",bytes));
224
+ * let result_str = str::from_bytes(bytes);
225
+ * println(fmt!(" %s",result_str));
226
226
* }
227
227
* ~~~~
228
228
*/
0 commit comments