diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-08-24 17:26:50 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-08-24 17:26:50 -0700 |
| commit | 626d8ad9dcbc7f82733e380531e5e78772d46917 (patch) | |
| tree | 8860b317e2fead9dca751f42aaa601f0d3d5af50 | |
| parent | 1add4cc261f4dfa31b3c03a454a443a345358b7c (diff) | |
| download | nng-626d8ad9dcbc7f82733e380531e5e78772d46917.tar.gz nng-626d8ad9dcbc7f82733e380531e5e78772d46917.tar.bz2 nng-626d8ad9dcbc7f82733e380531e5e78772d46917.zip | |
Minor spelling fixes.
| -rw-r--r-- | src/core/message.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/message.c b/src/core/message.c index 64a63201..78538194 100644 --- a/src/core/message.c +++ b/src/core/message.c @@ -277,9 +277,9 @@ nni_chunk_insert(nni_chunk *ch, const void *data, size_t len) } else if ((ch->ch_len + len + sizeof(uint64_t)) <= ch->ch_cap) { // We have some room. Split it between the head and - // tail. This is an attempt to reduce the likelhood of + // tail. This is an attempt to reduce the likelihood of // repeated shifts. We round it up to preserve - // alignment along pointers. Note that this + // alignment along pointers. // // We've ensured we have an extra // pad for alignment in the check above. |
