From f23d6ce833c5aba7a63b71522a6eb46b759a51a6 Mon Sep 17 00:00:00 2001 From: Alexey Yerin Date: Wed, 19 May 2021 21:10:22 +0300 Subject: [PATCH] linux::io_uring: fix typos in docs Signed-off-by: Alexey Yerin --- io_uring/sqe.ha | 4 ++-- diff --git a/io_uring/sqe.ha b/io_uring/sqe.ha index df469cbf0b91bcbed820197f93242580b1b5f236..6d47f8c5291ed49e0a155cb42724a3b2843364a7 100644 --- a/io_uring/sqe.ha +++ b/io_uring/sqe.ha @@ -167,7 +167,7 @@ preprw(sqe, op::SENDMSG, fd, msghdr, 0, 0, flags...); 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 @@ preprw(sqe, op::SEND, fd, buf, count: u32, 0, flags...); 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, -- 2.48.1