This commit is contained in:
Nick Fagerlund 2020-10-30 17:42:40 -07:00 committed by GitHub
parent 6408533fca
commit 5a4957f141
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ element(list, index)
```
The index is zero-based. This function produces an error if used with an
empty list. The index must be non-negative integer.
empty list. The index must be a non-negative integer.
Use the built-in index syntax `list[index]` in most cases. Use this function
only for the special additional "wrap-around" behavior described below.