Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch authored Dec 19, 2024
1 parent cb4bfd8 commit a867f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fprime_gds/common/history/chrono.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a867f57

Please sign in to comment.