Skip to content

Commit 7b6e73f

Browse files
committed
more .adoc markup fixes.
This is mostly mechanical-ish fixups to adjust markup style for cross references. A bit of care and feeding needed, so we haven't finished the list, but this gets a significant chunk of them.
1 parent 3e8522a commit 7b6e73f

File tree

70 files changed

+664
-664
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+664
-664
lines changed

docs/man/nng_aio.5.adoc

+23-23
Original file line numberDiff line numberDiff line change
@@ -37,34 +37,34 @@ This callback will be executed exactly once.
3737

3838
The asynchronous I/O framework in _nng_ also supports cancellation of
3939
operations that are already in progress
40-
(see `<<nng_aio_cancel.3#,nng_aio_cancel()>>`), as well setting a maximum
40+
(see xref:nng_aio_cancel.3.adoc[`nng_aio_cancel()`]), as well setting a maximum
4141
timeout for them to complete within
42-
(see `<<nng_aio_set_timeout.3#,nng_aio_set_timeout()>>`).
42+
(see xref:nng_aio_set_timeout.3.adoc[`nng_aio_set_timeout()`]).
4343

4444
It is also possible to initiate an asynchronous operation, and wait for it to
45-
complete using `<<nng_aio_wait.3#,nng_aio_wait()>>`.
45+
complete using xref:nng_aio_wait.3.adoc[`nng_aio_wait()`].
4646

47-
These structures are created using the `<<nng_aio_alloc.3#,nng_aio_alloc()>>`,
48-
and destroyed using `<<nng_aio_free.3#,nng_aio_free()>>`.
47+
These structures are created using the xref:nng_aio_alloc.3.adoc[`nng_aio_alloc()`],
48+
and destroyed using xref:nng_aio_free.3.adoc[`nng_aio_free()`].
4949

5050
== SEE ALSO
5151

5252
[.text-left]
53-
<<nng_aio_abort.3#,nng_aio_abort(3)>>,
54-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
55-
<<nng_aio_cancel.3#,nng_aio_cancel(3)>>,
56-
<<nng_aio_count.3#,nng_aio_count(3)>>,
57-
<<nng_aio_free.3#,nng_aio_free(3)>>,
58-
<<nng_aio_get_input.3#,nng_aio_get_input(3)>>,
59-
<<nng_aio_get_msg.3#,nng_aio_get_msg(3)>>,
60-
<<nng_aio_get_output.3#,nng_aio_get_output(3)>>,
61-
<<nng_aio_result.3#,nng_aio_result(3)>>,
62-
<<nng_aio_set_input.3#,nng_aio_set_input(3)>>,
63-
<<nng_aio_set_iov.3#,nng_aio_set_iov(3)>>,
64-
<<nng_aio_set_msg.3#,nng_aio_set_msg(3)>>,
65-
<<nng_aio_set_timeout.3#,nng_aio_set_timeout(3)>>,
66-
<<nng_aio_stop.3#,nng_aio_stop(3)>>,
67-
<<nng_aio_wait.3#,nng_aio_wait(3)>>,
68-
<<nng_strerror.3#,nng_strerror(3)>>,
69-
<<nng_aio.5#,nng_aio(5)>>,
70-
<<nng.7#,nng(7)>>
53+
xref:nng_aio_abort.3.adoc[nng_aio_abort(3)],
54+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
55+
xref:nng_aio_cancel.3.adoc[nng_aio_cancel(3)],
56+
xref:nng_aio_count.3.adoc[nng_aio_count(3)],
57+
xref:nng_aio_free.3.adoc[nng_aio_free(3)],
58+
xref:nng_aio_get_input.3.adoc[nng_aio_get_input(3)],
59+
xref:nng_aio_get_msg.3.adoc[nng_aio_get_msg(3)],
60+
xref:nng_aio_get_output.3.adoc[nng_aio_get_output(3)],
61+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
62+
xref:nng_aio_set_input.3.adoc[nng_aio_set_input(3)],
63+
xref:nng_aio_set_iov.3.adoc[nng_aio_set_iov(3)],
64+
xref:nng_aio_set_msg.3.adoc[nng_aio_set_msg(3)],
65+
xref:nng_aio_set_timeout.3.adoc[nng_aio_set_timeout(3)],
66+
xref:nng_aio_stop.3.adoc[nng_aio_stop(3)],
67+
xref:nng_aio_wait.3.adoc[nng_aio_wait(3)],
68+
xref:nng_strerror.3.adoc[nng_strerror(3)],
69+
xref:nng_aio.5.adoc[nng_aio(5)],
70+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_abort.3.adoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The `nng_aio_abort()` function aborts an operation previously started
2828
with the handle _aio_.
2929
If the operation is aborted, then the callback
3030
for the handle will be called, and the function
31-
`<<nng_aio_result.3#,nng_aio_result()>>` will return the error _err_.
31+
xref:nng_aio_result.3.adoc[`nng_aio_result()`] will return the error _err_.
3232

3333
This function does not wait for the operation to be fully aborted, but
3434
returns immediately.
@@ -48,8 +48,8 @@ None.
4848
== SEE ALSO
4949

5050
[.text-left]
51-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
52-
<<nng_aio_cancel.3#,nng_aio_cancel(3)>>,
53-
<<nng_aio_result.3#,nng_aio_result(3)>>,
54-
<<nng_aio.5#,nng_aio(5)>>,
55-
<<nng.7#,nng(7)>>
51+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
52+
xref:nng_aio_cancel.3.adoc[nng_aio_cancel(3)],
53+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
54+
xref:nng_aio.5.adoc[nng_aio(5)],
55+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_alloc.3.adoc

+23-23
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ NOTE: The callback _callb_ must not perform any blocking operations, and
3434
must complete its execution quickly. If _callb_ does block, this can
3535
lead ultimately to an apparent "hang" or deadlock in the application.
3636

37-
Asynchronous I/O operations all take an `<<nng_aio.5#,nng_aio>>`
37+
Asynchronous I/O operations all take an xref:nng_aio.5.adoc[`nng_aio`]
3838
handle such as allocated by this function.
3939
Such operations are usually started by a function that returns immediately.
4040
The operation is then run asynchronously, and completes sometime later.
4141
When that operation is complete, the callback supplied here is called,
4242
and that callback is able to determine the result of the operation using
43-
`<<nng_aio_result.3#,nng_aio_result()>>`,
44-
`<<nng_aio_count.3#,nng_aio_count()>>`,
45-
and `<<nng_aio_get_output.3#,nng_aio_get_output()>>`.
43+
xref:nng_aio_result.3.adoc[`nng_aio_result()`],
44+
xref:nng_aio_count.3.adoc[`nng_aio_count()`],
45+
and xref:nng_aio_get_output.3.adoc[`nng_aio_get_output()`].
4646

4747
It is possible to wait synchronously for an otherwise asynchronous operation
48-
by using the function `<<nng_aio_wait.3#,nng_aio_wait()>>`.
48+
by using the function xref:nng_aio_wait.3.adoc[`nng_aio_wait()`].
4949
In that case, it is permissible for _callb_ and _arg_ to both be `NULL`.
5050
Note that if these are `NULL`, then it will not be possible to determine when the
5151
operation is complete except by calling the aforementioned
52-
`<<nng_aio_wait.3#,nng_aio_wait()>>`.
52+
xref:nng_aio_wait.3.adoc[`nng_aio_wait()`].
5353

5454
== RETURN VALUES
5555

@@ -63,20 +63,20 @@ This function returns 0 on success, and non-zero otherwise.
6363
== SEE ALSO
6464

6565
[.text-left]
66-
<<nng_aio_abort.3#,nng_aio_abort(3)>>,
67-
<<nng_aio_cancel.3#,nng_aio_cancel(3)>>,
68-
<<nng_aio_count.3#,nng_aio_count(3)>>,
69-
<<nng_aio_free.3#,nng_aio_free(3)>>,
70-
<<nng_aio_get_input.3#,nng_aio_get_input(3)>>,
71-
<<nng_aio_get_msg.3#,nng_aio_get_msg(3)>>,
72-
<<nng_aio_get_output.3#,nng_aio_get_output(3)>>,
73-
<<nng_aio_result.3#,nng_aio_result(3)>>,
74-
<<nng_aio_set_input.3#,nng_aio_set_input(3)>>,
75-
<<nng_aio_set_iov.3#,nng_aio_set_iov(3)>>,
76-
<<nng_aio_set_msg.3#,nng_aio_set_msg(3)>>,
77-
<<nng_aio_set_timeout.3#,nng_aio_set_timeout(3)>>,
78-
<<nng_aio_stop.3#,nng_aio_stop(3)>>,
79-
<<nng_aio_wait.3#,nng_aio_wait(3)>>,
80-
<<nng_strerror.3#,nng_strerror(3)>>,
81-
<<nng_aio.5#,nng_aio(5)>>,
82-
<<nng.7#,nng(7)>>
66+
xref:nng_aio_abort.3.adoc[nng_aio_abort(3)],
67+
xref:nng_aio_cancel.3.adoc[nng_aio_cancel(3)],
68+
xref:nng_aio_count.3.adoc[nng_aio_count(3)],
69+
xref:nng_aio_free.3.adoc[nng_aio_free(3)],
70+
xref:nng_aio_get_input.3.adoc[nng_aio_get_input(3)],
71+
xref:nng_aio_get_msg.3.adoc[nng_aio_get_msg(3)],
72+
xref:nng_aio_get_output.3.adoc[nng_aio_get_output(3)],
73+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
74+
xref:nng_aio_set_input.3.adoc[nng_aio_set_input(3)],
75+
xref:nng_aio_set_iov.3.adoc[nng_aio_set_iov(3)],
76+
xref:nng_aio_set_msg.3.adoc[nng_aio_set_msg(3)],
77+
xref:nng_aio_set_timeout.3.adoc[nng_aio_set_timeout(3)],
78+
xref:nng_aio_stop.3.adoc[nng_aio_stop(3)],
79+
xref:nng_aio_wait.3.adoc[nng_aio_wait(3)],
80+
xref:nng_strerror.3.adoc[nng_strerror(3)],
81+
xref:nng_aio.5.adoc[nng_aio(5)],
82+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_begin.3.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This operation should be called at the start of any I/O operation, and must
3535
be called not more than once for a given I/O operation on a given _aio_.
3636

3737
Once this function is called, if `true` is returned, then the provider MUST
38-
guarantee that `<<nng_aio_finish.3#,nng_aio_finish()>>` is called for the _aio_
38+
guarantee that xref:nng_aio_finish.3.adoc[`nng_aio_finish()`] is called for the _aio_
3939
exactly once, when the operation is complete or canceled.
4040

4141
NOTE: This function is only for I/O providers (those actually performing
@@ -55,10 +55,10 @@ None.
5555
== SEE ALSO
5656

5757
[.text-left]
58-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
59-
<<nng_aio_cancel.3#,nng_aio_cancel(3)>>,
60-
<<nng_aio_defer.3#,nng_aio_defer(3)>>,
61-
<<nng_aio_finish.3#,nng_aio_finish(3)>>,
62-
<<nng_aio_result.3#,nng_aio_result(3)>>,
63-
<<nng_aio.5#,nng_aio(5)>>,
64-
<<nng.7#,nng(7)>>
58+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
59+
xref:nng_aio_cancel.3.adoc[nng_aio_cancel(3)],
60+
xref:nng_aio_defer.3.adoc[nng_aio_defer(3)],
61+
xref:nng_aio_finish.3.adoc[nng_aio_finish(3)],
62+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
63+
xref:nng_aio.5.adoc[nng_aio(5)],
64+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_cancel.3.adoc

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The `nng_aio_cancel()` function aborts an operation previously started
2828
with the handle _aio_.
2929
If the operation is aborted, then the callback
3030
for the handle will be called, and the function
31-
`<<nng_aio_result.3#,nng_aio_result()>>` will return the error `NNG_ECANCELED`.
31+
xref:nng_aio_result.3.adoc[`nng_aio_result()`] will return the error `NNG_ECANCELED`.
3232

3333
This function does not wait for the operation to be fully aborted, but
3434
returns immediately.
@@ -38,7 +38,7 @@ finished, or no operation has been started yet), then this function
3838
has no effect.
3939

4040
NOTE: This function is the same as calling
41-
`<<nng_aio_abort.3#,nng_aio_abort()>>` with the error `NNG_ECANCELED`.
41+
xref:nng_aio_abort.3.adoc[`nng_aio_abort()`] with the error `NNG_ECANCELED`.
4242

4343
== RETURN VALUES
4444

@@ -51,8 +51,8 @@ None.
5151
== SEE ALSO
5252

5353
[.text-left]
54-
<<nng_aio_abort.3#,nng_aio_abort(3)>>,
55-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
56-
<<nng_aio_result.3#,nng_aio_result(3)>>,
57-
<<nng_aio.5#,nng_aio(5)>>,
58-
<<nng.7#,nng(7)>>
54+
xref:nng_aio_abort.3.adoc[nng_aio_abort(3)],
55+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
56+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
57+
xref:nng_aio.5.adoc[nng_aio(5)],
58+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_count.3.adoc

+9-9
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ transfer user data (they may transfer protocol data though) -- in this case
3333
this function will generally return zero.
3434

3535
This function is most useful when used with operations that make use of
36-
of a scatter/gather vector (set by `<<nng_aio_set_iov.3#,nng_aio_set_iov()>>`).
36+
of a scatter/gather vector (set by xref:nng_aio_set_iov.3.adoc[`nng_aio_set_iov()`]).
3737

3838
NOTE: The return value from this function is undefined if the operation
3939
has not completed yet.
4040
Either call this from the handle's completion callback,
4141
or after waiting for the operation to complete with
42-
`<<nng_aio_wait.3#,nng_aio_wait()>>`.
42+
xref:nng_aio_wait.3.adoc[`nng_aio_wait()`].
4343

4444
== RETURN VALUES
4545

@@ -52,10 +52,10 @@ None.
5252
== SEE ALSO
5353

5454
[.text-left]
55-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
56-
<<nng_aio_result.3#,nng_aio_result(3)>>,
57-
<<nng_aio_set_iov.3#,nng_aio_set_iov(3)>>,
58-
<<nng_aio_wait.3#,nng_aio_wait(3)>>,
59-
<<nng_strerror.3#,nng_strerror(3)>>,
60-
<<nng_aio.5#,nng_aio(5)>>,
61-
<<nng.7#,nng(7)>>
55+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
56+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
57+
xref:nng_aio_set_iov.3.adoc[nng_aio_set_iov(3)],
58+
xref:nng_aio_wait.3.adoc[nng_aio_wait(3)],
59+
xref:nng_strerror.3.adoc[nng_strerror(3)],
60+
xref:nng_aio.5.adoc[nng_aio(5)],
61+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_defer.3.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ completed, or be in a state where it is no longer possible to unschedule it.
4040
In this case, the _cancelfn_ should just return without making any changes.
4141

4242
If the cancellation routine successfully canceled the operation, it should
43-
ensure that `<<nng_aio_finish.3#,nng_aio_finish()>>` is called, with the
43+
ensure that xref:nng_aio_finish.3.adoc[`nng_aio_finish()`] is called, with the
4444
error code specified by _err_.
4545

4646
IMPORTANT: It is mandatory that I/O providers call
47-
`<<nng_aio_finish.3#,nng_aio_finish()>>`
47+
xref:nng_aio_finish.3.adoc[`nng_aio_finish()`]
4848
*EXACTLY ONCE* when they are finished with the operation.
4949

5050
NOTE: This function is only for I/O providers (those actually performing
@@ -70,9 +70,9 @@ None.
7070
== SEE ALSO
7171

7272
[.text-left]
73-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
74-
<<nng_aio_cancel.3#,nng_aio_cancel(3)>>,
75-
<<nng_aio_finish.3#,nng_aio_finish(3)>>,
76-
<<nng_aio_result.3#,nng_aio_result(3)>>,
77-
<<nng_aio.5#,nng_aio(5)>>,
78-
<<nng.7#,nng(7)>>
73+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
74+
xref:nng_aio_cancel.3.adoc[nng_aio_cancel(3)],
75+
xref:nng_aio_finish.3.adoc[nng_aio_finish(3)],
76+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
77+
xref:nng_aio.5.adoc[nng_aio(5)],
78+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_finish.3.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void nng_aio_finish(nng_aio *aio, int err);
2727
The `nng_aio_finish()` function marks operation associated with _aio_ as
2828
complete, with the status _err_.
2929
This will be the result returned by
30-
`<<nng_aio_result.3#,nng_aio_result()>>`.
30+
xref:nng_aio_result.3.adoc[`nng_aio_result()`].
3131

3232
This function causes the callback associated with the _aio_ to called.
3333

@@ -51,10 +51,10 @@ None.
5151
== SEE ALSO
5252

5353
[.text-left]
54-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
55-
<<nng_aio_begin.3#,nng_aio_begin(3)>>,
56-
<<nng_aio_cancel.3#,nng_aio_cancel(3)>>,
57-
<<nng_aio_defer.3#,nng_aio_defer(3)>>,
58-
<<nng_aio_result.3#,nng_aio_result(3)>>,
59-
<<nng_aio.5#,nng_aio(5)>>,
60-
<<nng.7#,nng(7)>>
54+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
55+
xref:nng_aio_begin.3.adoc[nng_aio_begin(3)],
56+
xref:nng_aio_cancel.3.adoc[nng_aio_cancel(3)],
57+
xref:nng_aio_defer.3.adoc[nng_aio_defer(3)],
58+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
59+
xref:nng_aio.5.adoc[nng_aio(5)],
60+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_free.3.adoc

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The `nng_aio_free()` function frees an allocated asynchronous I/O handle.
2828
If any operation is in progress, the operation is canceled, and the
2929
caller is blocked until the operation is completely canceled, to ensure
3030
that it is safe to deallocate the handle and any associated resources.
31-
(This is done by implicitly calling `<<nng_aio_stop.3#,nng_aio_stop()>>`.)
31+
(This is done by implicitly calling xref:nng_aio_stop.3.adoc[`nng_aio_stop()`].)
3232

3333
== RETURN VALUES
3434

@@ -41,7 +41,7 @@ None.
4141
== SEE ALSO
4242

4343
[.text-left]
44-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
45-
<<nng_aio_stop.3#,nng_aio_stop(3)>>,
46-
<<nng_aio.5#,nng_aio(5)>>,
47-
<<nng.7#,nng(7)>>
44+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
45+
xref:nng_aio_stop.3.adoc[nng_aio_stop(3)],
46+
xref:nng_aio.5.adoc[nng_aio(5)],
47+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_get_input.3.adoc

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void *nng_aio_get_input(nng_aio *aio, unsigned int index);
2626

2727
The `nng_aio_get_input()` function returns the value of the input parameter
2828
previously set at _index_ on _aio_ with the
29-
`<<nng_aio_set_input.3#,nng_aio_set_input()>>` function.
29+
xref:nng_aio_set_input.3.adoc[`nng_aio_set_input()`] function.
3030

3131
The valid values of _index_ range from zero (0) to three (3), as no operation
3232
currently defined can accept more than four parameters.
@@ -45,9 +45,9 @@ None.
4545
== SEE ALSO
4646

4747
[.text-left]
48-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
49-
<<nng_aio_get_output.3#,nng_aio_get_output(3)>>,
50-
<<nng_aio_set_input.3#,nng_aio_set_input(3)>>,
51-
<<nng_aio_result.3#,nng_aio_result(3)>>,
52-
<<nng_aio.5#,nng_aio(5)>>,
53-
<<nng.7#,nng(7)>>
48+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
49+
xref:nng_aio_get_output.3.adoc[nng_aio_get_output(3)],
50+
xref:nng_aio_set_input.3.adoc[nng_aio_set_input(3)],
51+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
52+
xref:nng_aio.5.adoc[nng_aio(5)],
53+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_get_msg.3.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ nng_msg *nng_aio_get_msg(nng_aio *aio);
2626

2727
The `nng_aio_get_msg()` function gets any message stored in _aio_ as
2828
either a result of a successful receive
29-
(see `<<nng_recv_aio.3#,nng_recv_aio()>>`)
30-
or that was previously stored with `<<nng_aio_set_msg.3#,nng_aio_set_msg()>>`.
29+
(see xref:nng_recv_aio.3.adoc[`nng_recv_aio()`])
30+
or that was previously stored with xref:nng_aio_set_msg.3.adoc[`nng_aio_set_msg()`].
3131

32-
IMPORTANT: The `<<nng_aio.5#,nng_aio>>` must not have an operation in progress.
32+
IMPORTANT: The xref:nng_aio.5.adoc[`nng_aio`] must not have an operation in progress.
3333

3434
== RETURN VALUES
3535

@@ -42,8 +42,8 @@ None.
4242
== SEE ALSO
4343

4444
[.text-left]
45-
<<nng_aio_set_msg.3#,nng_aio_set_msg(3)>>,
46-
<<nng_recv_aio.3#,nng_recv_aio(3)>>,
47-
<<nng_aio.5#,nng_aio(5)>>,
48-
<<nng_msg.5#,nng_msg(5)>>,
49-
<<nng.7#,nng(7)>>
45+
xref:nng_aio_set_msg.3.adoc[nng_aio_set_msg(3)],
46+
xref:nng_recv_aio.3.adoc[nng_recv_aio(3)],
47+
xref:nng_aio.5.adoc[nng_aio(5)],
48+
xref:nng_msg.5.adoc[nng_msg(5)],
49+
xref:nng.7.adoc[nng(7)]

docs/man/nng_aio_get_output.3.adoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ None.
4848
== SEE ALSO
4949

5050
[.text-left]
51-
<<nng_aio_alloc.3#,nng_aio_alloc(3)>>,
52-
<<nng_aio_get_output.3#,nng_aio_get_output(3)>>,
53-
<<nng_aio_set_input.3#,nng_aio_set_input(3)>>,
54-
<<nng_aio_result.3#,nng_aio_result(3)>>,
55-
<<nng_aio.5#,nng_aio(5)>>,
56-
<<nng.7#,nng(7)>>
51+
xref:nng_aio_alloc.3.adoc[nng_aio_alloc(3)],
52+
xref:nng_aio_get_output.3.adoc[nng_aio_get_output(3)],
53+
xref:nng_aio_set_input.3.adoc[nng_aio_set_input(3)],
54+
xref:nng_aio_result.3.adoc[nng_aio_result(3)],
55+
xref:nng_aio.5.adoc[nng_aio(5)],
56+
xref:nng.7.adoc[nng(7)]

0 commit comments

Comments
 (0)