summaryrefslogtreecommitdiff
path: root/Base/usr/share
diff options
context:
space:
mode:
authorValtteri Koskivuori <vkoskiv@gmail.com>2021-07-13 02:25:14 +0300
committerLinus Groh <mail@linusgroh.de>2021-07-13 00:32:19 +0100
commit7e9845793714e77a6103b82462620dc8709926f0 (patch)
treed4edf63234cd0ce675805a383760d92c91306851 /Base/usr/share
parent448e8c6f4577f5b152aa1a4b32c606d8325ac494 (diff)
downloadserenity-7e9845793714e77a6103b82462620dc8709926f0.zip
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.
Diffstat (limited to 'Base/usr/share')
-rw-r--r--Base/usr/share/man/man1/file.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/usr/share/man/man1/file.md b/Base/usr/share/man/man1/file.md
index be37db78c8..53f1e3d354 100644
--- a/Base/usr/share/man/man1/file.md
+++ b/Base/usr/share/man/man1/file.md
@@ -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 *
```