1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-04-26 20:05:22 +02:00

fix a typo in the check doc

This commit is contained in:
Jack O'Connor 2021-11-13 09:24:15 -05:00
parent c61c663ec5
commit 315e44f875

View File

@ -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.