summaryrefslogtreecommitdiffstats
path: root/svgbob/examples/demo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'svgbob/examples/demo.rs')
-rw-r--r--svgbob/examples/demo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgbob/examples/demo.rs b/svgbob/examples/demo.rs
index 4057b7a..5c8a8b8 100644
--- a/svgbob/examples/demo.rs
+++ b/svgbob/examples/demo.rs
@@ -6,7 +6,7 @@ fn main() -> io::Result<()> {
let art = include_str!("../test_data/demo.bob");
let t1 = Instant::now();
fs::create_dir_all("out")?;
- fs::write("out/demo1.svg", svgbob::to_svg(art))?;
+ fs::write("out/demo.svg", svgbob::to_svg(art))?;
println!("took {}ms", t1.elapsed().as_millis());
Ok(())
}