Fixing serde formatting.

This commit is contained in:
Caroline Cullen
2018-08-07 12:36:49 -07:00
committed by Dan Gohman
parent 9683adec64
commit ad184ff9aa

View File

@@ -70,7 +70,7 @@ fn call_ser(file: &str, pretty: bool) -> CommandResult {
}
}
/// Deserialize JSON to Cranelift IR
/// Deserialize JSON to Cranelift IR
fn call_de(file: &File) -> CommandResult {
let de: serde_clif_json::SerObj = match serde_json::from_reader(file) {
Result::Ok(val) => val,