aboutsummaryrefslogtreecommitdiff
path: root/docs/man/nng_ctx_close.3.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'docs/man/nng_ctx_close.3.adoc')
-rw-r--r--docs/man/nng_ctx_close.3.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/man/nng_ctx_close.3.adoc b/docs/man/nng_ctx_close.3.adoc
index 16d9432e..32cb44f6 100644
--- a/docs/man/nng_ctx_close.3.adoc
+++ b/docs/man/nng_ctx_close.3.adoc
@@ -27,7 +27,7 @@ int nng_ctx_close(nng_ctx ctx);
The `nng_ctx_close()` function closes the context _ctx_.
Messages that have been submitted for sending may be flushed or delivered,
depending upon the transport and the setting of the
-<<nng_options.5#NNG_OPT_LINGER,`NNG_OPT_LINGER`>> option.
+`<<nng_options.5#NNG_OPT_LINGER,NNG_OPT_LINGER>>` option.
Further attempts to use the context after this call returns will result
in `NNG_ECLOSED`.
@@ -35,7 +35,7 @@ Threads waiting for operations on the context when this
call is executed may also return with an `NNG_ECLOSED` result.
NOTE: Closing the socket associated with _ctx_
-(using <<nng_close.3#,`nng_close()`>>) also closes this context.
+(using `<<nng_close.3#,nng_close()>>`) also closes this context.
== RETURN VALUES