aboutsummaryrefslogtreecommitdiff
path: root/docs/man
diff options
context:
space:
mode:
authorAnton C. Wagensonner <anton.wagensonner@gmx.at>2019-08-12 21:42:54 +0200
committerGarrett D'Amore <garrett@damore.org>2019-09-26 04:40:59 -0700
commit32d17517b87713e4d584555c35ac48d010243910 (patch)
treebe93ff8120874f986de8321ba243b0f18179beaf /docs/man
parente618abf8f3db2a94269a79c8901a51148d48fcc2 (diff)
downloadnng-32d17517b87713e4d584555c35ac48d010243910.tar.gz
nng-32d17517b87713e4d584555c35ac48d010243910.tar.bz2
nng-32d17517b87713e4d584555c35ac48d010243910.zip
fixes some typos in documentation
Diffstat (limited to 'docs/man')
-rw-r--r--docs/man/nng_ctx.5.adoc2
-rw-r--r--docs/man/nng_dialer.5.adoc2
-rw-r--r--docs/man/nng_listener.5.adoc2
-rw-r--r--docs/man/nng_pipe.5.adoc2
-rw-r--r--docs/man/nng_send.3.adoc2
-rw-r--r--docs/man/nng_socket.5.adoc2
6 files changed, 6 insertions, 6 deletions
diff --git a/docs/man/nng_ctx.5.adoc b/docs/man/nng_ctx.5.adoc
index b1285c2c..86b89a33 100644
--- a/docs/man/nng_ctx.5.adoc
+++ b/docs/man/nng_ctx.5.adoc
@@ -40,7 +40,7 @@ to a completely different request.
IMPORTANT: The `nng_ctx` structure is always passed by value (both
for input parameters and return values), and should be treated opaquely.
-Passing structures this way ensures gives the compiler a chance to perform
+Passing structures this way gives the compiler a chance to perform
accurate type checks in functions passing values of this type.
All contexts share the same socket, and so some options, as well as the
diff --git a/docs/man/nng_dialer.5.adoc b/docs/man/nng_dialer.5.adoc
index a2757e38..b484e185 100644
--- a/docs/man/nng_dialer.5.adoc
+++ b/docs/man/nng_dialer.5.adoc
@@ -40,7 +40,7 @@ by 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.
-Passing structures this way ensures gives the compiler a chance to perform
+Passing structures this way gives the compiler a chance to perform
accurate type checks in functions passing values of this type.
TIP: A given xref:nng_socket.5.adoc[`nng_socket`] may have multiple dialer
diff --git a/docs/man/nng_listener.5.adoc b/docs/man/nng_listener.5.adoc
index d481b2ce..70dd86c0 100644
--- a/docs/man/nng_listener.5.adoc
+++ b/docs/man/nng_listener.5.adoc
@@ -37,7 +37,7 @@ by a single xref:nng_socket.5.adoc[`nng_socket`].
IMPORTANT: The `nng_listener` structure is always passed by value (both
for input parameters and return values), and should be treated opaquely.
-Passing structures this way ensures gives the compiler a chance to perform
+Passing structures this way gives the compiler a chance to perform
accurate type checks in functions passing values of this type.
TIP: A given xref:nng_socket.5.adoc[`nng_socket`] may have multiple listener
diff --git a/docs/man/nng_pipe.5.adoc b/docs/man/nng_pipe.5.adoc
index 8f9442c6..c951ecb2 100644
--- a/docs/man/nng_pipe.5.adoc
+++ b/docs/man/nng_pipe.5.adoc
@@ -34,7 +34,7 @@ and therefore are also automatically associated with a single socket.
IMPORTANT: The `nng_pipe` structure is always passed by value (both
for input parameters and return values), and should be treated opaquely.
-Passing structures this way ensures gives the compiler a chance to perform
+Passing structures this way gives the compiler a chance to perform
accurate type checks in functions passing values of this type.
TIP: Most applications should never concern themselves with individual pipes.
diff --git a/docs/man/nng_send.3.adoc b/docs/man/nng_send.3.adoc
index 389ba079..7037f547 100644
--- a/docs/man/nng_send.3.adoc
+++ b/docs/man/nng_send.3.adoc
@@ -29,7 +29,7 @@ length _size_ using the xref:nng_socket.5.adoc[socket] _s_.
NOTE: The semantics of what sending a message means vary from protocol to
protocol, so examination of the protocol documentation is encouraged.
-(For example, with an xref:nng_pub.7.adoc[_nng_] socket the data is broadcast, so that
+(For example, with an xref:nng_pub.7.adoc[_pub_] socket the data is broadcast, so that
any peers who have a suitable subscription will be able to receive it using
xref:nng_recv.3.adoc[`nng_recv()`] or a similar function.)
Furthermore, some protocols may not support sending data (such as
diff --git a/docs/man/nng_socket.5.adoc b/docs/man/nng_socket.5.adoc
index b101969a..ab17f8f2 100644
--- a/docs/man/nng_socket.5.adoc
+++ b/docs/man/nng_socket.5.adoc
@@ -36,7 +36,7 @@ and is responsible for any state machines or other protocol-specific logic.
IMPORTANT: The `nng_socket` structure is always passed by value (both
for input parameters and return values), and should be treated opaquely.
-Passing structures this way ensures gives the compiler a chance to perform
+Passing structures this way gives the compiler a chance to perform
accurate type checks in functions passing values of this type.
Each `nng_socket` is created by a protocol-specific constructor, such as