summaryrefslogtreecommitdiffstats
path: root/svgbob_cli/examples/simple.rs
diff options
context:
space:
mode:
Diffstat (limited to 'svgbob_cli/examples/simple.rs')
-rw-r--r--svgbob_cli/examples/simple.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/svgbob_cli/examples/simple.rs b/svgbob_cli/examples/simple.rs
index 4d1d1fa..5c74d50 100644
--- a/svgbob_cli/examples/simple.rs
+++ b/svgbob_cli/examples/simple.rs
@@ -1,10 +1,10 @@
extern crate svgbob;
-fn main(){
+fn main() {
let input = r#"
.-------------------------------------.
| Hello here and there and everywhere |
'-------------------------------------'
"#;
- println!("svg: {}",svgbob::to_svg(input));
+ println!("svg: {}", svgbob::to_svg(input));
}