Fix linearity annotation in take

Hopefully this fixes the bootstrap build
This commit is contained in:
Edwin Brady 2020-12-27 20:11:06 +00:00
parent ad632d825d
commit 61ba5e086f

View File

@ -79,7 +79,7 @@ init (x::y::ys) = x :: init (y::ys)
||| Extract the first `n` elements of a Vect.
public export
take : (1 n : Nat)
take : (n : Nat)
-> ( xs : Vect (n + m) type)
-> Vect n type
take 0 xs = Nil