mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 08:19:43 +00:00
typo fix
This commit is contained in:
parent
6f06e388cf
commit
f415e221a2
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ function select(list, start, end) =
|
||||||
function slice(list,start=0,end=-1) =
|
function slice(list,start=0,end=-1) =
|
||||||
assert(is_list(list))
|
assert(is_list(list))
|
||||||
assert(is_int(start))
|
assert(is_int(start))
|
||||||
assert(is_int(eend))
|
assert(is_int(end))
|
||||||
!list? [] :
|
!list? [] :
|
||||||
let(
|
let(
|
||||||
l = len(list),
|
l = len(list),
|
||||||
|
|
Loading…
Reference in a new issue