diff --git a/docs/introduction/contributing.rst b/docs/introduction/contributing.rst index 0efbfc941..abcfc901e 100644 --- a/docs/introduction/contributing.rst +++ b/docs/introduction/contributing.rst @@ -18,11 +18,7 @@ so you may want to make sure that you master these advanced concepts. Then, if you don’t know well about the Lwt library, that’s what you want to learn. This library is used extensively throughout the code base, as that’s the one we use to handle concurrency, and Tezos is a very -concurrent system. You can use the online documentation. The `PDF -manual `__ is also quite -well written, but unfortunately not up to date, in particular the syntax -extension has changed. It is still a valid resource for the basic -concepts. The chapter on concurrency of `Real World +concurrent system. You can use the `online documentation `__. The chapter on concurrency of `Real World OCaml `__ has also been ported to Lwt. After that, it is a good idea to read the tutorials for diff --git a/docs/tutorials/error_monad.rst b/docs/tutorials/error_monad.rst index af1723111..7e33d4653 100644 --- a/docs/tutorials/error_monad.rst +++ b/docs/tutorials/error_monad.rst @@ -217,7 +217,7 @@ used several times in the Tezos codebase. Putting ``Lwt.t`` in the mix ---------------------------- -Tezos uses the `Lwt library `__ for threading. +Tezos uses the `Lwt library `__ for threading. The Lwt monad is mixed in with the error monad module. This requires us to add some extra combinators and reexport some functions from Lwt.