From 7e9845793714e77a6103b82462620dc8709926f0 Mon Sep 17 00:00:00 2001 From: Valtteri Koskivuori Date: Tue, 13 Jul 2021 02:25:14 +0300 Subject: [PATCH] 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. --- Base/usr/share/man/man1/file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 * ```