aboutsummaryrefslogtreecommitdiff
path: root/docs/man/nng_dialer.5.adoc
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2020-06-18 19:19:06 -0700
committerGarrett D'Amore <garrett@damore.org>2020-06-18 19:19:06 -0700
commitdbc61a5038cacc516a49d00a59a669e2617cff51 (patch)
tree2b63b03499af29eff7b9c76e352366223ddee1ce /docs/man/nng_dialer.5.adoc
parent2236819226e579058d9f9fd67f3d684630a40634 (diff)
downloadnng-dbc61a5038cacc516a49d00a59a669e2617cff51.tar.gz
nng-dbc61a5038cacc516a49d00a59a669e2617cff51.tar.bz2
nng-dbc61a5038cacc516a49d00a59a669e2617cff51.zip
Language cleanups in the documentation.
Mostly this is removal of the smart quotes, which were over-used, and misused, and could have been mistaken to be pejorative. A few other minor nits were fixed while here.
Diffstat (limited to 'docs/man/nng_dialer.5.adoc')
-rw-r--r--docs/man/nng_dialer.5.adoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/man/nng_dialer.5.adoc b/docs/man/nng_dialer.5.adoc
index b484e185..eb4d7c10 100644
--- a/docs/man/nng_dialer.5.adoc
+++ b/docs/man/nng_dialer.5.adoc
@@ -25,7 +25,7 @@ typedef struct nng_dialer_s nng_dialer;
== DESCRIPTION
(((dialer)))
-An `nng_dialer` is a handle to a "`dialer`" object, which is responsible for
+An `nng_dialer` is a handle to a dialer object, which is responsible for
creating a single xref:nng_pipe.5.adoc[`nng_pipe`] at a time by
establishing an outgoing connection.
@@ -35,8 +35,8 @@ destroyed.
Dialer objects are created by the
xref:nng_dialer_create.3.adoc[`nng_dialer_create()`]
-or xref:nng_dial.3.adoc[`nng_dial()`] functions, and are always "`owned`"
-by a single xref:nng_socket.5.adoc[`nng_socket`].
+or xref:nng_dial.3.adoc[`nng_dial()`] functions, and are always associated
+with a single xref:nng_socket.5.adoc[`nng_socket`].
IMPORTANT: The `nng_dialer` structure is always passed by value (both
for input parameters and return values), and should be treated opaquely.
@@ -56,7 +56,7 @@ challenging communications problems.
Dialer objects may be destroyed by the
xref:nng_dialer_close.3.adoc[`nng_dialer_close()`] function.
-They are also closed when their "`owning`" socket is closed.
+They are also closed when their associated socket is closed.
[[NNG_DIALER_INITIALIZER]]
=== Initialization