Base: Fix typo in the man page for file

On macOS with a Finnish keyboard layout, $ is typed with Option+4. While
writing this manpage, I made the mistake of holding Option down a little
too long, as I often do, resulting in the keystroke Option+space. This,
instead of typing a space, types U+00A0 (non-breaking space), which
looks identical on my host terminal. Luckily the Serenity terminal
called me out on it, printing out a question mark instead.
This commit is contained in:
Valtteri Koskivuori 2021-07-13 02:25:14 +03:00 committed by Linus Groh
parent 448e8c6f45
commit 7e98457937

View file

@ -30,6 +30,6 @@ First, an attempt is made to identify a given file based on predetermined binary
$ file Buggie.png
Buggie.png: PNG image data, 64 x 138
# Identify all files in the current directory, and show only the mime type.
$ file -I *
$ file -I *
```