From 9cf991bb2941d6ce44ff93fb45f4459209ead351 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Thu, 28 Oct 2021 21:07:41 -0400 Subject: [PATCH] doc tweak --- lists.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lists.scad b/lists.scad index 85fcf14..07356e9 100644 --- a/lists.scad +++ b/lists.scad @@ -152,7 +152,7 @@ function list_shape(v, depth=undef) = // b = in_list("bee", ["foo", "bar", "baz"]); // Returns false. // c = in_list("bar", [[2,"foo"], [4,"bar"], [3,"baz"]], idx=1); // Returns true. -// Note: a huge complication occurs because OpenSCAD's search() finds +// Note that a huge complication occurs because OpenSCAD's search() finds // index i as a hits if the val equals list[i] but also if val equals list[i][0]. // This means every hit needs to be checked to see if it's actually a hit, // and if the first hit is a mismatch we have to keep searching.