From 42bffef35ff39e8fa0c2b0caeec77b53ad517018 Mon Sep 17 00:00:00 2001 From: RonaldoCMP Date: Sun, 30 Aug 2020 12:18:53 +0100 Subject: [PATCH] Minor doc corrections --- arrays.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrays.scad b/arrays.scad index d012c94..e2d3ac2 100644 --- a/arrays.scad +++ b/arrays.scad @@ -26,8 +26,8 @@ // Returns true when the list have elements of same type up to the depth `depth`. // Booleans and numbers are not distinguinshed as of distinct types. // Arguments: -// list - the list to check -// depth - the lowest level the check is done +// list = the list to check +// depth = the lowest level the check is done // Example: // is_homogeneous( [[1,["a"]], [2,["b"]]] ) // Returns true // is_homogeneous( [[1,["a"]], [2,[true]]] ) // Returns false