Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iox-#2384 mistype fix #2385

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/website/release-notes/iceoryx-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**

Expand Down
4 changes: 2 additions & 2 deletions iceoryx_hoofs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`. |
Expand Down
Loading