fix human numbers

This commit is contained in:
2026-05-15 12:38:35 -07:00
parent 0deee670d9
commit a5ca7ff25d
+1 -1
View File
@@ -70,7 +70,7 @@ impl Display for Klondike {
.into_iter()
.enumerate()
{
write!(f, "T{i} ")?;
write!(f, "T{} ", i + 1)?;
let pile = self.pile(tableau);
for _ in pile.face_down() {
write!(f, "]")?;