summaryrefslogtreecommitdiffstats
path: root/src/draw.rs
diff options
context:
space:
mode:
authorGuy Bolton King <guy@waftex.com>2020-02-14 13:27:22 +0000
committerGuy Bolton King <guy@waftex.com>2020-02-14 13:27:22 +0000
commit308751bc09872f301b303ccfd8b9e4f204ddd229 (patch)
tree6822413a5edb90c708f0c0eb2b5ac03eec518988 /src/draw.rs
parentcd3226a8f6449ab76bb772d30d74f009a28e1cb0 (diff)
Fix missing newline in draw::write_boxed_with_line
Diffstat (limited to 'src/draw.rs')
-rw-r--r--src/draw.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/draw.rs b/src/draw.rs
index 29670693..9487c557 100644
--- a/src/draw.rs
+++ b/src/draw.rs
@@ -46,6 +46,7 @@ pub fn write_boxed_with_line(
line_style,
heavy,
)?;
+ write!(writer, "\n")?;
Ok(())
}