aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/Interthread.h
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2019-10-13 19:08:00 +0200
committerlaforge <laforge@osmocom.org>2019-10-17 08:06:19 +0000
commit066fd04f471ad55639b5cc6dd13b8aa9ca7c1f40 (patch)
tree47d55c870c077ea000bc39705f5021f7b65f6e7d /CommonLibs/Interthread.h
parentaeaba02e024ceb8858ac9a986d7ce5d0506cefb6 (diff)
Fix common misspellings and typos
Diffstat (limited to 'CommonLibs/Interthread.h')
-rw-r--r--CommonLibs/Interthread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CommonLibs/Interthread.h b/CommonLibs/Interthread.h
index 8169985..881e1a8 100644
--- a/CommonLibs/Interthread.h
+++ b/CommonLibs/Interthread.h
@@ -47,7 +47,7 @@
// (pat) The elements in the queue are type T*, and
// the Fifo class implements the underlying queue.
// The default is class PointerFIFO, which does not place any restrictions on the type of T,
-// and is implemented by allocating auxilliary structures for the queue,
+// and is implemented by allocating auxiliary structures for the queue,
// or SingleLinkedList, which implements the queue using an internal pointer in type T,
// which must implement the functional interface of class SingleLinkListNode,
// namely: functions T*next() and void setNext(T*).