From 52fa4e7ee4816209ad82ba92ece8a3dc5b25ddd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Fri, 18 Dec 2020 21:14:12 +0100 Subject: [PATCH] Fix typo --- ProcessList.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProcessList.c b/ProcessList.c index ee09edc8..78ec2b64 100644 --- a/ProcessList.c +++ b/ProcessList.c @@ -149,7 +149,7 @@ int ProcessList_size(ProcessList* this) { // // The algorithm is based on `depth-first search`, // even though `breadth-first search` approach may be more efficient on first glance, -// after comparision it may be not, as it's not safe to go deeper without first updating the tree structure. +// after comparison it may be not, as it's not safe to go deeper without first updating the tree structure. // If it would be safe that approach would likely bring an advantage in performance. // // Each call of the function looks for a 'layer'. A 'layer' is a list of processes with the same depth.