fixed indentation

This commit is contained in:
Jerome Plut 2020-12-03 21:34:59 +01:00
parent 4af725eec1
commit 328a7e8daa

View file

@ -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: