Merge pull request #9040 from waalge/waalge/tail-docstr

fix docstring
This commit is contained in:
Robert Hensing 2023-09-26 15:32:00 +01:00 committed by GitHub
commit 57202969d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2991,7 +2991,7 @@ static RegisterPrimOp primop_tail({
.name = "__tail",
.args = {"list"},
.doc = R"(
Return the second to last elements of a list; abort evaluation if
Return the list without its first item; abort evaluation if
the argument isnt a list or is an empty list.
> **Warning**