nits and rebase fallout

This commit is contained in:
Oliver 'ker' Schneider
2015-07-23 18:37:26 +02:00
committed by Oliver Schneider
parent 24787195a1
commit 8f8fc6f3ff
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -61,12 +61,12 @@
//! //#![feature(custom_derive, plugin)]
//! //#![plugin(serde_macros)]
//!
//! extern crate serde;
//! extern crate serde_json;
//!
//! use serde_json::{self, Value};
//! use serde_json::Value;
//!
//! fn main() {
//! let data: Value = json::from_str("{\"foo\": 13, \"bar\": \"baz\"}").unwrap();
//! let data: Value = serde_json::from_str("{\"foo\": 13, \"bar\": \"baz\"}").unwrap();
//! println!("data: {:?}", data);
//! // data: {"bar":"baz","foo":13}
//! println!("object? {}", data.is_object());