summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDash Peters <dpeters@calacademy.org>2020-07-06 10:46:01 -0700
committerDavid Peter <sharkdp@users.noreply.github.com>2020-07-09 08:15:04 +0200
commit99819087f1cae6324b166f9062401f6044b935ea (patch)
treef2dd5898385242514e28d4a31666dd7d1a9a78b5 /src
parent3956e96e748b1e89b7a717f39a244a6946c82511 (diff)
Switch to "·" (U+00B7) Middle Dot from "•" (U+2022) Bullet
Diffstat (limited to 'src')
-rw-r--r--src/preprocessor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preprocessor.rs b/src/preprocessor.rs
index f6c3d3f3..eb878890 100644
--- a/src/preprocessor.rs
+++ b/src/preprocessor.rs
@@ -60,7 +60,7 @@ pub fn replace_nonprintable(input: &[u8], tab_width: usize) -> String {
match chr {
// space
- ' ' => output.push('•'),
+ ' ' => output.push('·'),
// tab
'\t' => {
if tab_width == 1 {