Change empty well symbol (easier to read)

This commit is contained in:
Emilia Allison 2023-05-13 17:35:47 -04:00
parent 6b12335bbc
commit b4faca150d
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ impl fmt::Display for TransferRegion<'_> {
if dest_wells.contains(&(i,j)) { if dest_wells.contains(&(i,j)) {
dest_string.push_str("x") dest_string.push_str("x")
} else { } else {
dest_string.push_str("o") dest_string.push_str(".")
} }
} }
dest_string.push_str("\n"); dest_string.push_str("\n");