Skip to content

Commit 14209c9

Browse files
committed
Links
1 parent d46de2b commit 14209c9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ code promptly cancels external requests and frees critical resources.
148148
A trigger provides the ability to await for a signal and is perhaps the best
149149
established and least controversial element of the Picos interface.
150150

151-
Here is an extract from the signature of `Trigger` module:
151+
Here is an extract from the signature of the
152+
[`Trigger` module](https://ocaml-multicore.github.io/picos/doc/picos/Picos/Trigger/index.html):
152153

153154
<!--
154155
```ocaml
@@ -282,7 +283,8 @@ _canceled_, of some sort of computation and allows anyone with access to the
282283
computation to attach triggers to it to be signaled in case the computation
283284
stops running.
284285

285-
Here is an extract from the signature of the `Computation` module:
286+
Here is an extract from the signature of the
287+
[`Computation` module](https://ocaml-multicore.github.io/picos/doc/picos/Picos/Computation/index.html):
286288

287289
```ocaml skip
288290
type 'a t
@@ -343,7 +345,8 @@ it runs some function under its handler. The `Fiber` abstraction provides a way
343345
to share a proxy identity, and a bit of state, between a scheduler and other
344346
concurrent abstractions.
345347

346-
Here is an extract from the signature of the `Fiber` module:
348+
Here is an extract from the signature of the
349+
[`Fiber` module](https://ocaml-multicore.github.io/picos/doc/picos/Picos/Fiber/index.html):
347350

348351
```ocaml skip
349352
type t

0 commit comments

Comments
 (0)