From c5b4cd7bbc14912af2737ace7a7e4052aa76690c Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Tue, 4 Oct 2022 12:45:18 -0700 Subject: [PATCH] [doxygen] change `inout` to `in,out` (#8231) --- src/posix/platform/vendor_interface.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/posix/platform/vendor_interface.hpp b/src/posix/platform/vendor_interface.hpp index 7ece23487..0d82eab88 100644 --- a/src/posix/platform/vendor_interface.hpp +++ b/src/posix/platform/vendor_interface.hpp @@ -119,10 +119,10 @@ public: /** * This method updates the file descriptor sets with file descriptors used by the radio driver. * - * @param[inout] aReadFdSet A reference to the read file descriptors. - * @param[inout] aWriteFdSet A reference to the write file descriptors. - * @param[inout] aMaxFd A reference to the max file descriptor. - * @param[inout] aTimeout A reference to the timeout. + * @param[in,out] aReadFdSet A reference to the read file descriptors. + * @param[in,out] aWriteFdSet A reference to the write file descriptors. + * @param[in,out] aMaxFd A reference to the max file descriptor. + * @param[in,out] aTimeout A reference to the timeout. * */ void UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, int &aMaxFd, struct timeval &aTimeout);