aboutsummaryrefslogtreecommitdiff
path: root/demo
diff options
context:
space:
mode:
authormochalins <117967760+mochalins@users.noreply.github.com>2025-05-23 17:02:52 +0900
committerGarrett D'Amore <garrett@damore.org>2025-06-02 07:24:06 -0700
commit4e1ffdca6d97c1bddc460835c94b16bc64284861 (patch)
tree80c27b0e509c8d7001619af27a33794f4bcad3c4 /demo
parent1323aece0712522ccb2bf432b5085889a3513fa8 (diff)
downloadnng-4e1ffdca6d97c1bddc460835c94b16bc64284861.tar.gz
nng-4e1ffdca6d97c1bddc460835c94b16bc64284861.tar.bz2
nng-4e1ffdca6d97c1bddc460835c94b16bc64284861.zip
Fix typos across docs, comments, and CMake
Diffstat (limited to 'demo')
-rw-r--r--demo/stream/stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demo/stream/stream.c b/demo/stream/stream.c
index 0c194111..86c1c98d 100644
--- a/demo/stream/stream.c
+++ b/demo/stream/stream.c
@@ -63,7 +63,7 @@ client(const char *url)
nng_iov iov;
int rv;
- // Allocatate dialer and aio assoicated with this connection
+ // Allocate dialer and aio associated with this connection
if ((rv = nng_stream_dialer_alloc(&dialer, url)) != 0) {
nng_fatal("call to nng_stream_dialer_alloc failed", rv);
}
@@ -125,7 +125,7 @@ server(const char *url)
nng_iov iov;
int rv;
- // Allocatate dialer and aio assoicated with this connection
+ // Allocate dialer and aio associated with this connection
if ((rv = nng_stream_listener_alloc(&listener, url)) != 0) {
nng_fatal("call to nng_stream_listener_alloc failed", rv);
}