diff --git a/docs/thread-model.md b/docs/thread-model.md index 6335595502..765a946851 100644 --- a/docs/thread-model.md +++ b/docs/thread-model.md @@ -121,7 +121,7 @@ purely functional promise that can only be completed once. trait Deferred[F[_], A] { def get: F[A] - def complete(a: A): F[Unit] + def complete(a: A): F[Boolean] } ```