@ -75,7 +75,7 @@ var usageStrings = map[string]string{
"license":"(license) => ()",
"list":"(list [value...]) => list",
"list?":"(list? [value]) => bool",
"list-ref":"(list-ref [list] [index: number]) => value\n\nList indexing starts at 0",
"list-ref":"(list-ref [list] [index: number] [[set: value]]) => value|list\n\nList indexing starts at 0. When the optional `set` argument is provided the list will be returned with the value at the given index replaced by the `set` value that was given",
"list-seed":"(list-seed [length: number] [value]) => list\n\nUsing list seed to create lists filled with a certain element is more efficient than recursion for large lists and will not overflow the stack\n\n`length` should be a positive number larger than zero. If a floating point number is given, it will be floored",
"list-sort":"(list-sort [list] [[sub-list-index: number]]) => list\n\nIf `list` is a list of lists, sorting can be done by the index value of a sublist if desired. `list-sort` always sorts the list in ascending order, but can be reversed with `reverse`",