correct backtick

This commit is contained in:
Anton-4 2024-08-02 18:44:02 +02:00
parent 7d2d62519a
commit bb2bae4b8e
No known key found for this signature in database
GPG Key ID: 0971D718C0A9B937

View File

@ -831,7 +831,7 @@ listGet = \index ->
# Notes:
# - `Str.toU64 "2"` parses the string "2" to the integer 2, and returns `Ok 2` (more on
# integer types later)
# - since parsing is successful, `Result.try` passes 2 to the `listGet`` function
# - since parsing is successful, `Result.try` passes 2 to the `listGet` function
# - passing "abc" or "1000" instead of "2" would have resulted in `Err InvalidNumStr`
# or `Err OutOfBounds` respectively
```