From db322f8639df4de41d20ae1eb36bd489d35ad3c9 Mon Sep 17 00:00:00 2001 From: EgorWeders Date: Mon, 9 Dec 2024 15:59:26 +0700 Subject: [PATCH] iox-#2384 mistype fix --- iceoryx_hoofs/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iceoryx_hoofs/README.md b/iceoryx_hoofs/README.md index 9f5a562f93..0a6a9bef49 100644 --- a/iceoryx_hoofs/README.md +++ b/iceoryx_hoofs/README.md @@ -122,8 +122,8 @@ The module structure is a logical grouping. It is replicated for `concurrent` an | class | internal | description | |:----------------------------------:|:--------:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |`UnixDomainSocket` | | Interface for unix domain sockets. | -|`MessageQueue` | Interface for Message Queues, see [ManPage mq_overview](https://www.man7.org/linux/man-pages/man7/mq_overview.7.html). | -|`NamedPipe` | Shared memory based IPC channel. Mainly a `UnixDomainSocket` replacement on Windows. | +|`MessageQueue` | | Interface for Message Queues, see [ManPage mq_overview](https://www.man7.org/linux/man-pages/man7/mq_overview.7.html). | +|`NamedPipe` |i | Shared memory based IPC channel. Mainly a `UnixDomainSocket` replacement on Windows. | |`PosixSharedMemoryObject` | | Creates and maps existing shared memory into the application. | |`PosixMemoryMap` | i | Abstraction of `mmap`, `munmap` and helper class for the `PosixSharedMemoryObject`. | |`PosixSharedMemory` | i | Abstraction of shared memory, see [ManPage shm_overview](https://www.man7.org/linux/man-pages/man7/shm_overview.7.html) and helper class for the `PosixSharedMemoryObject`. |