hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 04a6bcacde40968ae0d967d876602a74c1c5c9cb
parent 19b3839657aea9781638e4f4b6280928f77746e5
Author: Alexey Yerin <yyp@disroot.org>
Date:   Wed, 19 May 2021 21:10:22 +0300

linux::io_uring: fix typos in docs

Signed-off-by: Alexey Yerin <yyp@disroot.org>

Diffstat:
Mlinux/io_uring/sqe.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/linux/io_uring/sqe.ha b/linux/io_uring/sqe.ha @@ -167,7 +167,7 @@ export fn sendmsg( sqe.msg_flags = sendmsg_flags; }; -// Prepares a recvmsg operation for an [[sqe]], equivalent to the sendmsg(2) +// Prepares a recvmsg operation for an [[sqe]], equivalent to the recvmsg(2) // system call. export fn recvmsg( sqe: *sqe, @@ -195,7 +195,7 @@ export fn send( sqe.msg_flags = send_flags; }; -// Prepares a recv operation for an [[sqe]], equivalent to the send(2) system +// Prepares a recv operation for an [[sqe]], equivalent to the recv(2) system // call. export fn recv( sqe: *sqe,