diff options
| author | mochalins <117967760+mochalins@users.noreply.github.com> | 2025-05-23 17:02:52 +0900 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-06-02 07:24:06 -0700 |
| commit | 4e1ffdca6d97c1bddc460835c94b16bc64284861 (patch) | |
| tree | 80c27b0e509c8d7001619af27a33794f4bcad3c4 /demo/stream | |
| parent | 1323aece0712522ccb2bf432b5085889a3513fa8 (diff) | |
| download | nng-4e1ffdca6d97c1bddc460835c94b16bc64284861.tar.gz nng-4e1ffdca6d97c1bddc460835c94b16bc64284861.tar.bz2 nng-4e1ffdca6d97c1bddc460835c94b16bc64284861.zip | |
Fix typos across docs, comments, and CMake
Diffstat (limited to 'demo/stream')
| -rw-r--r-- | demo/stream/stream.c | 4 |
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); } |
