From 2fc0894023bf4220ae559d9eeff8aa5c51b18cff Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Sat, 2 Apr 2022 14:53:20 +0200 Subject: [PATCH] top(1): Fix a typo in a source code comment - s/accomodate/accommodate/ MFC after: 3 days --- usr.bin/top/top.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/top/top.c b/usr.bin/top/top.c index 68b7bdf1dfb5..6b18b9572b20 100644 --- a/usr.bin/top/top.c +++ b/usr.bin/top/top.c @@ -652,7 +652,7 @@ main(int argc, const char *argv[]) { /* determine number of processes to actually display */ /* this number will be the smallest of: active processes, - number user requested, number current screen accomodates */ + number user requested, number current screen accommodates */ active_procs = system_info.p_pactive; if (active_procs > topn) {