From 328a7e8daa3214ea4b34647ed070a338f03f86a4 Mon Sep 17 00:00:00 2001 From: Jerome Plut Date: Thu, 3 Dec 2020 21:34:59 +0100 Subject: [PATCH] fixed indentation --- common.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common.scad b/common.scad index a0abd81..abd0a7f 100644 --- a/common.scad +++ b/common.scad @@ -314,10 +314,10 @@ function get_height(h=undef,l=undef,height=undef,dflt=undef) = // Function: get_named_args(positional, named, _undef) // Usage: -// function f(pos1=_undef, pos2=_undef,..., -// named1=_undef, named2=_undef, ...) = -// let(args = get_named_args([pos1, pos2, ...], -// [[named1, default1], [named2, default2], ...]), +// function f(pos1=_undef, pos2=_undef,..., +// named1=_undef, named2=_undef, ...) = +// let(args = get_named_args([pos1, pos2, ...], +// [[named1, default1], [named2, default2], ...]), // named1=args[0], named2=args[1], ...) // ... // Description: