Skip to content

Commit d27244b

Browse files
committed
???
1 parent 2f3ff53 commit d27244b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/2016/08.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,10 @@ impl Screen<5, 6> {
195195
U => Ok('U'),
196196
Y => Ok('Y'),
197197
Z => Ok('Z'),
198-
other => bail!("Don't know what letter this is:\n\n{other}\n"),
198+
other => bail!(
199+
"Don't know what letter this is:\n\n{}",
200+
other.escape_debug()
201+
),
199202
}
200203
}
201204
}

0 commit comments

Comments
 (0)