Skip to content

Commit 2001f67

Browse files
committed
---
yaml --- r: 139796 b: refs/heads/try2 c: b5c9990 h: refs/heads/master v: v3
1 parent b1ff36a commit 2001f67

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: ced12a74cd5195852d9f074c5334a678f4aa001c
8+
refs/heads/try2: b5c9990c387fff415a7de54f5870e5af92169a5d
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libstd/base64.rs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ impl<'self> ToBase64 for &'self [u8] {
3737
* use std::base64::ToBase64;
3838
*
3939
* 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));
4242
* }
4343
* ~~~~
4444
*/
@@ -102,8 +102,8 @@ impl<'self> ToBase64 for &'self str {
102102
* use std::base64::ToBase64;
103103
*
104104
* 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));
107107
* }
108108
* ~~~~
109109
*
@@ -130,10 +130,10 @@ impl FromBase64 for ~[u8] {
130130
* use std::base64::FromBase64;
131131
*
132132
* 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));
137137
* }
138138
* ~~~~
139139
*/
@@ -217,12 +217,12 @@ impl FromBase64 for ~str {
217217
* use core::str;
218218
*
219219
* 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));
226226
* }
227227
* ~~~~
228228
*/

0 commit comments

Comments
 (0)