summaryrefslogtreecommitdiffstats
path: root/src/msgb.c
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-03-08 21:10:23 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-03-08 21:10:23 +0700
commit8c8e6d7e53bcda6c0c569b157aedbf7c820cd21a (patch)
tree054a4543a36ff4a6118f853cfd0c6e1122b3b2c2 /src/msgb.c
parentbf86d71f58f83f53e740d64e649884c91ee77c26 (diff)
src/msgb.c: cosmetic: fix spelling mistakes
Change-Id: I6b473aadaa22d95f2a8cc87580c638ccd7e531a4
Diffstat (limited to 'src/msgb.c')
-rw-r--r--src/msgb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/msgb.c b/src/msgb.c
index faef09e6..48ef25ae 100644
--- a/src/msgb.c
+++ b/src/msgb.c
@@ -38,7 +38,7 @@
* * headroom, i.e. space in front of the message, to allow
* for additional headers being pushed in front of the current
* data
- * * the curently occupied data for the message
+ * * the currently occupied data for the message
* * tailroom, i.e. space at the end of the message, to
* allow more data to be added after the end of the current
* data
@@ -98,7 +98,7 @@ struct msgb *msgb_alloc(uint16_t size, const char *name)
}
/*! Release given message buffer
- * \param[in] m Message buffer to be free'd
+ * \param[in] m Message buffer to be freed
*/
void msgb_free(struct msgb *m)
{
@@ -144,7 +144,7 @@ struct msgb *msgb_dequeue(struct llist_head *queue)
* \param[in] msg message buffer that is to be resetted
*
* This will re-set the various internal pointers into the underlying
- * message buffer, i.e. remvoe all headroom and treat the msgb as
+ * message buffer, i.e. remove all headroom and treat the msgb as
* completely empty. It also initializes the control buffer to zero.
*/
void msgb_reset(struct msgb *msg)