mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-26 05:01:34 +03:00
Fix typo in documentation string
This commit is contained in:
parent
b697cea6e2
commit
9eaff9f728
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user