forgotten code fence

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
This commit is contained in:
Anton-4 2023-03-10 11:32:12 +01:00 committed by GitHub
parent 766385a561
commit e2bd3cfc8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1029,7 +1029,9 @@ sublist = \list, config ->
sublistLowlevel : List elem, Nat, Nat -> List elem
## Intersperses `sep` between the elements of `list`
## ```
## List.intersperse 9 [1, 2, 3] # [1, 9, 2, 9, 3]
## ```
intersperse : List elem, elem -> List elem
intersperse = \list, sep ->
capacity = 2 * List.len list