aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/message.c4
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.