diff --git a/doc/website/release-notes/iceoryx-unreleased.md b/doc/website/release-notes/iceoryx-unreleased.md index 7443e67ff7..009c82310a 100644 --- a/doc/website/release-notes/iceoryx-unreleased.md +++ b/doc/website/release-notes/iceoryx-unreleased.md @@ -234,6 +234,7 @@ - Create a flat include structure for `iceoryx_hoofs` [#1593](https://github.com/eclipse-iceoryx/iceoryx/issues/1593) - Handle 'strerror_r' idiosyncrasies in the platform layer [#1616](https://github.com/eclipse-iceoryx/iceoryx/issues/1616) - Fix new clang-tidy-18 warnings [#2274](https://github.com/eclipse-iceoryx/iceoryx/issues/2274) +- Mistype in readme file [#2384](https://github.com/eclipse-iceoryx/iceoryx/issues/2384) **Workflow:** 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`. |