summaryrefslogtreecommitdiff
path: root/lib/tsocket
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2021-01-12 09:25:45 +0100
committerVolker Lendecke <vl@samba.org>2021-01-14 13:29:35 +0000
commit51f5631bbb3801d320127ea4a90403cb074c0095 (patch)
tree73748fab376c72436df6f306cf79a99033fe74c3 /lib/tsocket
parenta21867bc48b6a78d8bfa040e850a6b59b2af7860 (diff)
downloadsamba-51f5631bbb3801d320127ea4a90403cb074c0095.tar.gz
tsocket: Fix a few typos
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Samuel Cabrero <scabrero@samba.org>
Diffstat (limited to 'lib/tsocket')
-rw-r--r--lib/tsocket/tsocket_guide.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tsocket/tsocket_guide.txt b/lib/tsocket/tsocket_guide.txt
index 9a96b0432bd..afd0bd37dbc 100644
--- a/lib/tsocket/tsocket_guide.txt
+++ b/lib/tsocket/tsocket_guide.txt
@@ -3,7 +3,7 @@ Basic design of the tsocket abstraction
=======================================
The tsocket abstraction is split into two
-different kinds of communitation interfaces.
+different kinds of communication interfaces.
There is the "tstream_context" interface which abstracts
the communication through a bidirectional
@@ -30,12 +30,12 @@ Constructors are described in later sections of this document.
A function to get the string representation of an endpoint for debugging is
available but callers SHOULD NOT try to parse this string. To get more
details, callers should use getter methods of the specific tsocket_address
-implemention.
+implementation.
char *tsocket_address_string(const struct tsocket_address *addr,
TALLOC_CTX *mem_ctx);
-A function to create a copy of the tsocket_address is also avilable.
+A function to create a copy of the tsocket_address is also available.
This is useful before doing modifications to a socket
via additional methods of the specific tsocket_address implementation.