File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
branches/try/src/libserialize Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 8fe47bc3bb34d7a1ce7bbd2c6fc5ea7a6dbf57a4
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: bab614f5fa725d248afc5f0530c835f37998ce8f
5
- refs/heads/try: b0fb520f7260d345d6060322ca74b94b00e283d8
5
+ refs/heads/try: 76371d1ff1b6fc7c84e12513816a4586e14aa24b
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ fn main() {
71
71
let to_encode_object = TestStruct{data_str:"example of string to encode".to_string()};
72
72
let mut m = io::MemWriter::new();
73
73
{
74
- let mut encoder = json::Encoder::new(&mut m as &mut std::io:: Writer);
74
+ let mut encoder = json::Encoder::new(&mut m as &mut Writer);
75
75
match to_encode_object.encode(&mut encoder) {
76
76
Ok(()) => (),
77
77
Err(e) => fail!("json encoding error: {}", e)
You can’t perform that action at this time.
0 commit comments