Fix typo in documentation string

This commit is contained in:
hilary888 2022-09-30 21:11:02 +00:00 committed by G. Allais
parent b697cea6e2
commit 9eaff9f728

View File

@ -207,7 +207,7 @@ unsnoc : (xs : Vect (S n) a) -> (Vect n a, a)
unsnoc [x] = ([], x) unsnoc [x] = ([], x)
unsnoc (x :: xs@(_ :: _)) = let (ini, lst) = unsnoc xs in (x :: ini, lst) unsnoc (x :: xs@(_ :: _)) = let (ini, lst) = unsnoc xs in (x :: ini, lst)
||| Repeate some value some number of times. ||| Repeat some value some number of times.
||| |||
||| @ len the number of times to repeat it ||| @ len the number of times to repeat it
||| @ x the value to repeat ||| @ x the value to repeat