From df09c22738216748c360d4ed2dc8cca9094df2da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=A8=E5=A4=B4=E4=BA=91?= Date: Sun, 9 Feb 2025 17:00:48 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f3e119..8956316 100755 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ * No other dependencies except STL. * Only lock-free or lightweight spin-lock is used. * Circular array is used as the underline data structure. - * `ipc::route` supports single read and multiple write. `ipc::channel` supports multiple read and write. (**Note: currently, a channel supports up to 32 receivers, but there is no such a limit for the sender.**) + * `ipc::route` supports single write and multiple read. `ipc::channel` supports multiple read and write. (**Note: currently, a channel supports up to 32 receivers, but there is no such a limit for the sender.**) * Broadcasting is used by default, but user can choose any read/ write combinations. * No long time blind wait. (Semaphore will be used after a certain number of retries.) * [Vcpkg](https://github.com/microsoft/vcpkg/blob/master/README.md) way of installation is supported. E.g. `vcpkg install cpp-ipc`