From d03a3f5a01eab9aeb86ceabc9f614f6670c7f42e Mon Sep 17 00:00:00 2001 From: Nick Gal Date: Fri, 22 Sep 2023 12:06:16 -0700 Subject: [PATCH] Update main.rs --- tools/wld-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wld-cli/src/main.rs b/tools/wld-cli/src/main.rs index 9d1e86a1..dae169f6 100644 --- a/tools/wld-cli/src/main.rs +++ b/tools/wld-cli/src/main.rs @@ -204,7 +204,7 @@ fn extract(wld_filename: &str, destination: &str, format: &Format) { &wld_doc, ron::ser::PrettyConfig::new().enumerate_arrays(true), ) - .expect("Could not serialize to json") + .expect("Could not serialize to ron") } } }