Fix: broken Ocsigen links

This commit is contained in:
Vincent Botbol 2018-04-12 11:50:59 +02:00 committed by Benjamin Canou
parent 1833434f84
commit 90afe58372
2 changed files with 2 additions and 6 deletions

View File

@ -18,11 +18,7 @@ so you may want to make sure that you master these advanced concepts.
Then, if you dont know well about the Lwt library, thats what you want
to learn. This library is used extensively throughout the code base, as
thats the one we use to handle concurrency, and Tezos is a very
concurrent system. You can use the online documentation. The `PDF
manual <https://ocsigen.org/download/lwt-manual.pdf>`__ 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 <https://ocsigen.org/lwt/3.2.1/manual/manual>`__. The chapter on concurrency of `Real World
OCaml <https://github.com/dkim/rwo-lwt>`__ has also been ported to Lwt.
After that, it is a good idea to read the tutorials for

View File

@ -217,7 +217,7 @@ used several times in the Tezos codebase.
Putting ``Lwt.t`` in the mix
----------------------------
Tezos uses the `Lwt library <http://ocsigen.org/lwt/>`__ for threading.
Tezos uses the `Lwt library <https://ocsigen.org/lwt/3.2.1/manual/manual>`__ 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.