doc fix for list_head

This commit is contained in:
Adrian Mariano 2024-11-27 20:20:56 -05:00
parent 1930d5deee
commit 8b90ef14d6

View file

@ -304,7 +304,7 @@ function last(list) =
// Example: // Example:
// hlist1 = list_head(["foo", "bar", "baz"]); // Returns: ["foo", "bar"] // hlist1 = list_head(["foo", "bar", "baz"]); // Returns: ["foo", "bar"]
// hlist2 = list_head(["foo", "bar", "baz"], -3); // Returns: ["foo"] // hlist2 = list_head(["foo", "bar", "baz"], -3); // Returns: ["foo"]
// hlist3 = list_head(["foo", "bar", "baz"], 2); // Returns: ["foo","bar"] // hlist3 = list_head(["foo", "bar", "baz"], 1); // Returns: ["foo","bar"]
// hlist4 = list_head(["foo", "bar", "baz"], -5); // Returns: [] // hlist4 = list_head(["foo", "bar", "baz"], -5); // Returns: []
// hlist5 = list_head(["foo", "bar", "baz"], 5); // Returns: ["foo","bar","baz"] // hlist5 = list_head(["foo", "bar", "baz"], 5); // Returns: ["foo","bar","baz"]
function list_head(list, to=-2) = function list_head(list, to=-2) =