From b2f59482ca4978bdab3d27419737f1b3a7766ab7 Mon Sep 17 00:00:00 2001 From: Thomas Barlow Date: Wed, 29 Jan 2025 14:19:00 +0000 Subject: [PATCH] Fix comment typo "be" was missing. --- Fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index 52def18a5304..17a9c4a1b3b0 100644 --- a/Fill.py +++ b/Fill.py @@ -76,7 +76,7 @@ def fill_restrictive(multiworld: MultiWorld, base_state: CollectionState, locati for item in items_to_place: # The items added into `reachable_items` are placed starting from the end of each deque in - # `reachable_items`, so the items being placed are more likely to found towards the end of `item_pool`. + # `reachable_items`, so the items being placed are more likely to be found towards the end of `item_pool`. for p, pool_item in enumerate(reversed(item_pool), start=1): if pool_item is item: del item_pool[-p]