readme: fix example code so it builds
Might be worthwhile to look at trying to automate testing the code in the README (perhaps by generating the README from some special tests).
This commit is contained in:
parent
5711e3d860
commit
b50b702d1c
@ -61,7 +61,7 @@ fn main() {
|
|||||||
|
|
||||||
println!("{}", serialized);
|
println!("{}", serialized);
|
||||||
|
|
||||||
let deserialized: Point = serde_json::from_str(&serialized_point).unwrap();
|
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
|
||||||
|
|
||||||
println!("{:?}", deserialized);
|
println!("{:?}", deserialized);
|
||||||
}
|
}
|
||||||
@ -119,7 +119,7 @@ fn main() {
|
|||||||
|
|
||||||
println!("{}", serialized);
|
println!("{}", serialized);
|
||||||
|
|
||||||
let deserialized: Point = serde_json::from_str(&serialized_point).unwrap();
|
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
|
||||||
|
|
||||||
println!("{:?}", deserialized);
|
println!("{:?}", deserialized);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user