From 4465b48f75f1bbf9ed92e8169db89d6bb8c07ea9 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sun, 20 Mar 2016 15:46:17 +0100 Subject: [PATCH] TDB2: Fix wrong comment --- src/TDB2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TDB2.cpp b/src/TDB2.cpp index 5d501eb9b..0f3e696c3 100644 --- a/src/TDB2.cpp +++ b/src/TDB2.cpp @@ -1408,7 +1408,7 @@ const std::vector TDB2::children (Task& task) if (i.getStatus () != Task::completed && i.getStatus () != Task::deleted) { - // If task has the same parent, it is a sibling. + // If task has the given task as a parent, it is a child task. if (i.get ("parent") == parent) results.push_back (i); }