From a867f577f4f10bfc99f162716e4c4ba762e5a4b5 Mon Sep 17 00:00:00 2001 From: M Starch Date: Thu, 19 Dec 2024 13:24:22 -0800 Subject: [PATCH] Fix comment --- src/fprime_gds/common/history/chrono.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fprime_gds/common/history/chrono.py b/src/fprime_gds/common/history/chrono.py index 52ce06dd..d3c523af 100644 --- a/src/fprime_gds/common/history/chrono.py +++ b/src/fprime_gds/common/history/chrono.py @@ -161,7 +161,7 @@ def __insert_chrono(data_object, ordered): """ for i, item in reversed(list(enumerate(ordered))): # Note: for events with the exact same time, this should default to the order received from downlink - # and as such the data item should be treated as older. + # and as such the data item should be treated as newer because it was received later. if item.get_time() <= data_object.get_time(): ordered.insert(i + 1, data_object) return i