Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelma committed Dec 2, 2024
1 parent a454aee commit 3648029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data_structure/temporal_structure.jl
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,8 @@ end

function _time_slice_set_collect_updates(t_set::TimeSliceSet)
updates = collect(_collect_updates_many(t_set.time_slices))
append!(_collect_updates_many(values(t_set.gaps)))
append!(_collect_updates_many(values(t_set.bridges)))
append!(updates, _collect_updates_many(values(t_set.gaps)))
append!(updates, _collect_updates_many(values(t_set.bridges)))
updates
end

Expand Down

0 comments on commit 3648029

Please sign in to comment.