diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-01-16 19:30:46 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-01-16 19:31:02 +0100 |
commit | 8dd25ed7abffb8de7b796372f41909afd595e9b8 (patch) | |
tree | 165e522f36a2e76a91b0b721ecf08ca08d32dc1d /content/en/docs/Examples/dev-1.md | |
parent | 404c0f53673a05ef9c370daef60837fb6273d11a (diff) | |
download | website-8dd25ed7abffb8de7b796372f41909afd595e9b8.tar.gz website-8dd25ed7abffb8de7b796372f41909afd595e9b8.zip |
content: Fix broken link in dev tutorial
Diffstat (limited to 'content/en/docs/Examples/dev-1.md')
-rw-r--r-- | content/en/docs/Examples/dev-1.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/en/docs/Examples/dev-1.md b/content/en/docs/Examples/dev-1.md index ebc276c..3603034 100644 --- a/content/en/docs/Examples/dev-1.md +++ b/content/en/docs/Examples/dev-1.md @@ -28,7 +28,7 @@ flow_alloc() call is a blocking call that allocates a flow to *dst*. Both calls return an non-negative integer number describing a "flow descriptor", which is very similar to a file descriptor. On error, they will return a negative error code. (See the [man -page](/man/man3/flow_alloc.html) for all details). If the *timeo* +page](/man/man3/flow_alloc.3.html) for all details). If the *timeo* parameter supplied is NULL, the calls will block indefinitely, otherwise flow_alloc() will return -ETIMEDOUT when the time interval provided by *timeo* expires. We are working on implementing non-blocking versions if |