summaryrefslogtreecommitdiff
path: root/docs/reference/src/api/aio
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-03-24 22:19:42 -0700
committerGarrett D'Amore <garrett@damore.org>2024-03-24 22:19:42 -0700
commit331bd5a7c360083f245fe6c82afa38dd05c4a9c9 (patch)
treef7a50976a4a6a717660d1c94a9808e896c3c2059 /docs/reference/src/api/aio
parent962553386968a528593665e228b9424de84d7f4e (diff)
downloadnng-331bd5a7c360083f245fe6c82afa38dd05c4a9c9.tar.gz
nng-331bd5a7c360083f245fe6c82afa38dd05c4a9c9.tar.bz2
nng-331bd5a7c360083f245fe6c82afa38dd05c4a9c9.zip
More org stuff
Diffstat (limited to 'docs/reference/src/api/aio')
-rw-r--r--docs/reference/src/api/aio/nng_aio_free.md3
-rw-r--r--docs/reference/src/api/aio/nng_aio_result.md14
-rw-r--r--docs/reference/src/api/aio/nng_aio_wait.md2
3 files changed, 9 insertions, 10 deletions
diff --git a/docs/reference/src/api/aio/nng_aio_free.md b/docs/reference/src/api/aio/nng_aio_free.md
index c558535d..3d73dd7c 100644
--- a/docs/reference/src/api/aio/nng_aio_free.md
+++ b/docs/reference/src/api/aio/nng_aio_free.md
@@ -31,5 +31,4 @@ This can be useful to discard the _aio_ object from within the callback for the
## SEE ALSO
[nng_aio_alloc()](nng_aio_alloc.md),
-[nng_aio_stop()](nng_aio_stop.md),
-[nng_aio](nng_aio.md)
+[nng_aio_stop()](nng_aio_stop.md)
diff --git a/docs/reference/src/api/aio/nng_aio_result.md b/docs/reference/src/api/aio/nng_aio_result.md
index fe6688fd..607f34d4 100644
--- a/docs/reference/src/api/aio/nng_aio_result.md
+++ b/docs/reference/src/api/aio/nng_aio_result.md
@@ -19,11 +19,12 @@ with the handle _aio_.
If the operation was successful, then 0 is returned.
Otherwise a non-zero error code is returned.
-NOTE: The return value from this function is undefined if the operation
-has not completed yet.
-Either call this from the handle's completion
-callback, or after waiting for the operation to complete with
-[`nng_aio_wait()`](nng_aio_wait.md).
+> [!NOTE]
+> The return value from this function is undefined if the operation
+> has not completed yet.
+> Either call this from the handle's completion
+> callback, or after waiting for the operation to complete with
+> [`nng_aio_wait()`](nng_aio_wait.md).
## RETURN VALUES
@@ -42,5 +43,4 @@ Various other return values are possible depending on the operation.
[nng_aio_abort()](nng_aio_abort.md),
[nng_aio_alloc()](nng_aio_alloc.md),
[nng_aio_wait()](nng_aio_wait.md),
-[nng_strerror()](nng_strerror.md),
-[nng_aio](nng_aio.md),
+[nng_strerror()](../util/nng_strerror.md)
diff --git a/docs/reference/src/api/aio/nng_aio_wait.md b/docs/reference/src/api/aio/nng_aio_wait.md
index 52f5671e..be81378c 100644
--- a/docs/reference/src/api/aio/nng_aio_wait.md
+++ b/docs/reference/src/api/aio/nng_aio_wait.md
@@ -24,7 +24,7 @@ function will not be called until the callback has completed.
> [!IMPORTANT]
> This function should never be called from a function that itself
-> is a callback of an [`nng_aio`](nng_aio.md), either this one or any other.
+> is a callback of an [`nng_aio`](index.md), either this one or any other.
> Doing so may result in a deadlock.
## SEE ALSO