summaryrefslogtreecommitdiff
path: root/docs/reference/src/api/aio
diff options
context:
space:
mode:
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