From 315e44f875051d53f7007e646860b83a34361372 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Sat, 13 Nov 2021 09:24:15 -0500 Subject: [PATCH] fix a typo in the check doc --- b3sum/what_does_check_do.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/b3sum/what_does_check_do.md b/b3sum/what_does_check_do.md index 3a44a00..3af0e53 100644 --- a/b3sum/what_does_check_do.md +++ b/b3sum/what_does_check_do.md @@ -80,10 +80,10 @@ Similarly, if the filepath contained a backslash, `b3sum` would escape it as ## Invalid Unicode -This is where `b3sum` and `md5um` diverge. Apart from the newline and backslash -escapes described above, `md5sum` copies all other filepath bytes verbatim to -its output. That means its output encoding is "ASCII plus whatever bytes we got -from the command line". This creates two problems: +This is where `b3sum` and `md5sum` diverge. Apart from the newline and +backslash escapes described above, `md5sum` copies all other filepath bytes +verbatim to its output. That means its output encoding is "ASCII plus whatever +bytes we got from the command line". This creates two problems: 1. Printing something that isn't UTF-8 is kind of gross. 2. Windows support.