refactor: generalize Await signature a little

This commit is contained in:
tydeu 2021-10-27 12:19:02 -04:00
parent b0991cf96b
commit 781672e935

View file

@ -16,7 +16,7 @@ class Async (m : Type u → Type v) (n : outParam $ Type u → Type u) where
export Async (async)
class Await (n : Type u → Type u) (m : Type u → Type v) where
class Await (n : Type u → Type v) (m : Type u → Type w) where
/- Wait for an asynchronous task to finish. -/
await : n α → m α