summaryrefslogtreecommitdiff
path: root/src/layout
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-02-09 14:13:00 +0100
committerLaurenz <laurmaedje@gmail.com>2020-02-09 14:14:32 +0100
commit5badb4e8ff1f8e055f5c1960d1d9803ee4d832fc (patch)
tree3d545458f84cc3c2c68850f16568469adcf821bc /src/layout
parent4e8359385f73e549a563fd356b6858050464991d (diff)
Write lots of parser tests 🌪
Diffstat (limited to 'src/layout')
-rw-r--r--src/layout/actions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/actions.rs b/src/layout/actions.rs
index 0abef5f9..8b50edfa 100644
--- a/src/layout/actions.rs
+++ b/src/layout/actions.rs
@@ -60,7 +60,7 @@ impl Debug for LayoutAction {
use LayoutAction::*;
match self {
MoveAbsolute(s) => write!(f, "move {} {}", s.x, s.y),
- SetFont(i, s) => write!(f, "font {}_{} {}", i.id, i.variant, s),
+ SetFont(i, s) => write!(f, "font {}-{} {}", i.id, i.variant, s),
WriteText(s) => write!(f, "write {:?}", s),
DebugBox(s) => write!(f, "box {} {}", s.x, s.y),
}