Fix erroneous Sequence impl

This commit is contained in:
F. Levi 2024-11-13 15:58:54 +02:00
parent c2b14b8f8f
commit 7882819795

View File

@ -448,7 +448,7 @@ impl Sequence for Action {
previous_item = Some(*next_flag); previous_item = Some(*next_flag);
potential_previous_index += 1; potential_previous_index += 1;
} else { } else {
return None; return pre_previous_item;
} }
} }
} }