From 9152ba328181842bda24deb9329566636451a66c Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Tue, 5 May 2020 18:57:03 -0400 Subject: [PATCH] docs: make process help text consistent with README --- src/constants.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.rs b/src/constants.rs index 2fda4b15..5f9ec000 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -80,8 +80,8 @@ pub const CPU_HELP_TEXT: [&str; 4] = [ pub const PROCESS_HELP_TEXT: [&str; 8] = [ "3 - Process widget\n", "dd Kill the selected process\n", - "c Sort by processor usage, press again to reverse sorting order\n", - "m Sort by memory usage\n", + "c Sort by CPU usage, press again to reverse sorting order\n", + "m Sort by memory usage, press again to reverse sorting order\n", "p Sort by PID name, press again to reverse sorting order\n", "n Sort by process name, press again to reverse sorting order\n", "Tab Group/un-group processes with the same name\n",