aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rst/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rst/src/main.rs b/rst/src/main.rs
index 6a7ed44..fa4b2a7 100644
--- a/rst/src/main.rs
+++ b/rst/src/main.rs
@@ -52,7 +52,7 @@ fn main() -> CliResult {
let stdout = std::io::stdout();
match args.format {
Format::json => render_json(&document, stdout)?,
- Format::xml => render_xml (&document, stdout)?,
+ Format::xml => render_xml(&document, stdout)?,
Format::html => render_html(&document, stdout, true)?,
}
Ok(())