From be604196308279ca886c7420bdc9465cb89f168e Mon Sep 17 00:00:00 2001 From: Narendran Gopalakrishnan Date: Mon, 9 Nov 2020 17:37:02 +0100 Subject: [PATCH] Cleanup some documentation --- Process.h | 2 +- linux/LinuxProcess.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Process.h b/Process.h index fba782b8..ba3b83c9 100644 --- a/Process.h +++ b/Process.h @@ -67,7 +67,7 @@ typedef struct Process_ { pid_t pid; pid_t ppid; pid_t tgid; - char* comm; /* use Process_getCommand() for a decorated command line */ + char* comm; /* use Process_getCommand() for Command actually displayed */ int commLen; int indent; diff --git a/linux/LinuxProcess.c b/linux/LinuxProcess.c index 1d1f9004..c9828065 100644 --- a/linux/LinuxProcess.c +++ b/linux/LinuxProcess.c @@ -351,7 +351,7 @@ void LinuxProcess_makeCommandStr(Process* this) { } /* The field separtor "│" has been chosen such that it will not match any - * valid search string used for sorting or filtering */ + * valid string used for searching or filtering */ const char *SEPARATOR = CRT_treeStr[TREE_STR_VERT]; const int SEPARATOR_LEN = strlen(SEPARATOR);