aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.rs')
-rw-r--r--src/buffer.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/buffer.rs b/src/buffer.rs
index a2c5708..61b3374 100644
--- a/src/buffer.rs
+++ b/src/buffer.rs
@@ -10,7 +10,9 @@ impl Buffer {
Self {
height,
width: height * aspect_ratio,
- palette: "$@B%8&WM#oahkbdpqwmZO0QLCJUYXzcvunxrjft/\\|()1{}[]?-_+~<>i!lI;:,\"^`'. ".chars().collect(),
+ palette: "$@B%8&WM#oahkbdpqwmZO0QLCJUYXzcvunxrjft/\\|()1{}[]?-_+~<>i!lI;:,\"^`'. "
+ .chars()
+ .collect(),
}
}
}