From 04681447a5b4c0b6f70af3a07afe89961dfd95d9 Mon Sep 17 00:00:00 2001 From: Lucas Scharenbroich Date: Mon, 6 Mar 2023 14:57:52 -0600 Subject: [PATCH] Checkpoint --- tools/scanline-test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/scanline-test.py b/tools/scanline-test.py index 396e06e..96f6faa 100644 --- a/tools/scanline-test.py +++ b/tools/scanline-test.py @@ -35,8 +35,8 @@ def simplify(a): return b # Given two sorted lists, merge them together into a minimal set of ranges. This could -# be done as a list merge nd then a combine step, but we want to be more efficient and -# do the merge-and-compbine at the same time +# be done as a list merge and then a combine step, but we want to be more efficient and +# do the merge-and-combine at the same time def merge(a, b): if len(a) == 0: return simplify(b)