Cleanup some documentation

This commit is contained in:
Narendran Gopalakrishnan 2020-11-09 17:37:02 +01:00 committed by BenBE
parent fcda517a67
commit be60419630
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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);