From ea23eee8e224b5ec0b0fb832aa0c59d2e90d096b Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Fri, 16 Jun 2023 11:12:47 +0200 Subject: Fix typos --- Process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Process.c') diff --git a/Process.c b/Process.c index 43f7f70d..1424d6ef 100644 --- a/Process.c +++ b/Process.c @@ -208,7 +208,7 @@ void Process_printTime(RichString* str, unsigned long long totalHundredths, bool int hourColor = coloring ? CRT_colors[PROCESS_MEGABYTES] : CRT_colors[PROCESS]; int defColor = CRT_colors[PROCESS]; - if (days >= /* Ignore leapyears */365) { + if (days >= /* Ignore leap years */365) { int years = days / 365; int daysLeft = days - 365 * years; @@ -287,7 +287,7 @@ void Process_fillStarttimeBuffer(Process* this) { * * Note: when colorizing a basename with the comm prefix, the entire basename * (not just the comm prefix) is colorized for better readability, and it is - * implicit that only upto (TASK_COMM_LEN - 1) could be comm. + * implicit that only up to (TASK_COMM_LEN - 1) could be comm. */ #define TASK_COMM_LEN 16 -- cgit v1.2.3