1
0
mirror of https://github.com/jht5945/prettyjson.git synced 2025-12-27 17:20:05 +08:00

fix mis-spell

This commit is contained in:
2019-08-03 10:05:22 +08:00
parent 807d34b66b
commit 82d19bf5ce

View File

@@ -83,7 +83,7 @@ fn main() {
},
Ok(content) => match json::parse(&content) {
Err(err) => {
print_message(MessageType::ERROR, &format!("Parse JSON pailed: {}", err));
print_message(MessageType::ERROR, &format!("Parse JSON failed: {}", err));
return;
},
Ok(json_object) => json_object,