From 8f1162e7bf0cb1a30b9ab8758161d2f0c98ede0a Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Sun, 2 Aug 2020 10:38:33 -0400 Subject: [PATCH] doc typo fix --- arrays.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrays.scad b/arrays.scad index 0b7b924..4f1c317 100644 --- a/arrays.scad +++ b/arrays.scad @@ -1182,7 +1182,7 @@ function add_scalar(v,s) = // M = The given list of lists. // idx = The index, list of indices, or range of indices to fetch. // Example: -// M = [[[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]]; +// M = [[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]]; // subindex(M,2); // Returns [3, 7, 11, 15] // subindex(M,[2]); // Returns [[3], [7], [11], [15]] // subindex(M,[2,1]); // Returns [[3, 2], [7, 6], [11, 10], [15, 14]]