git: 0ba51e3b6384 - main - fstat(1): Fix typo

From: Li-Wen Hsu <lwhsu_at_FreeBSD.org>
Date: Sun, 17 Dec 2023 10:43:30 UTC
The branch main has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/src/commit/?id=0ba51e3b638424597add4212958524c9b750dd7b

commit 0ba51e3b638424597add4212958524c9b750dd7b
Author:     Yu-Hsun Chen <ss109062134@gapp.nthu.edu.tw>
AuthorDate: 2023-12-13 08:42:22 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2023-12-17 10:41:53 +0000

    fstat(1): Fix typo
    
    This is from the Advanced UNIX Programming Course (Fall’23) at NTHU.
    
    MFC after:      3 days
    Pull Request:   https://github.com/freebsd/freebsd-src/pull/929
---
 usr.bin/fstat/fstat.1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/fstat/fstat.1 b/usr.bin/fstat/fstat.1
index f49e628551b8..4d6e32438a04 100644
--- a/usr.bin/fstat/fstat.1
+++ b/usr.bin/fstat/fstat.1
@@ -310,7 +310,7 @@ $ fstat . | awk 'NR > 1 {printf "%d%s(%s) ", $3, $4, $1;}'
 2133wd(alice) 2132wd(alice) 1991wd(alice)
 .Ed
 .Pp
-Create a list of processes sorted by number of opened files in desdencing order:
+Create a list of processes sorted by number of opened files in descending order:
 .Bd -literal -offset indent
 $ fstat | awk 'NR > 1 {print $2;}' | sort | uniq -c | sort -r
  728 firefox