From 83b45d61a4f736e41b753ffbaeac1b72cd6efab8 Mon Sep 17 00:00:00 2001 From: Mathias Kraus Date: Thu, 23 Feb 2023 22:38:54 +0100 Subject: [PATCH] iox-#1394 Update documentation --- iceoryx_hoofs/README.md | 2 +- iceoryx_hoofs/include/iceoryx_hoofs/posix_wrapper/file_lock.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iceoryx_hoofs/README.md b/iceoryx_hoofs/README.md index 8dbf452a51..5750d5a044 100644 --- a/iceoryx_hoofs/README.md +++ b/iceoryx_hoofs/README.md @@ -57,7 +57,7 @@ The module structure is a logical grouping. It is replicated for `concurrent` an | class | internal | description | |:---------------------:|:--------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -|`filesystem` | | Implementation of C++17 filesystem features for instance `cxx::perms` to abstract file permissions | +|`filesystem` | | Implementation of C++17 filesystem features for instance `iox::access_rights` and `iox::perms` to abstract file permissions | |`AccessController` | i | Interface for Access Control Lists (ACL). | |`FileLock` | | File lock C++ wrapping class. | |`posix_access_rights` | | Rights and user management interface. | diff --git a/iceoryx_hoofs/include/iceoryx_hoofs/posix_wrapper/file_lock.hpp b/iceoryx_hoofs/include/iceoryx_hoofs/posix_wrapper/file_lock.hpp index a52aabf15f..803e417a0f 100644 --- a/iceoryx_hoofs/include/iceoryx_hoofs/posix_wrapper/file_lock.hpp +++ b/iceoryx_hoofs/include/iceoryx_hoofs/posix_wrapper/file_lock.hpp @@ -52,7 +52,7 @@ enum class FileLockError /// @code /// auto fileLock = iox::posix::FileLockBuilder().name("myLockName") /// .path("/tmp") -/// .permission(iox::cxx::perms::owner_all) +/// .permission(iox::perms::owner_all) /// .create() /// .expect("Oh no I couldn't create the lock"); /// @endcode