From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [182.253.183.184]) by gnuweeb.org (Postfix) with ESMTPSA id 828207E73D; Thu, 12 Jan 2023 15:57:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1673539049; bh=yBIS9FwtQ5Dko+wK3qpwtAbxSv3Mr7MwLjxCXmCrwJU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VRhTJJtT7xipuhKIcbDWNpa3bZwFbtObAXw6wF+Dl+VcaCdXtCRJDpaQjyXtKcP1L 9MUhrW916qnhV41VTKo5o3gNvwdJpeJjB5nDF709zKVO66FWKM43sw6/diSDuWMNMt kCPR9m2ypRGV41EdZBzkv5dxdl4h71twSrN2QYx6ZKkHsGI9kvTXO95OmCRvn2IuJ+ WkaEVZNrIzH1D8EOgV/FcMMwZTMpV38+FSDnLYFmtOi+NP4Ap4tRRj8pUSYHDqhLKV mkpFfCm20bcqHPVUKmRyP9ipUMp/rwCGCUmK+bCFnEaPRO+kaGYkAikF63mlJ/lOsE BLAEZ/DRiV/iQ== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Pavel Begunkov , Breno Leitao , Christian Mazakas , Gilang Fachrezy , VNLX Kernel Department , io-uring Mailing List , Linux Kernel Mailing List , GNU/Weeb Mailing List Subject: [PATCH liburing v1 3/4] liburing.h: 's/is adjust/is adjusted/' and fix indentation Date: Thu, 12 Jan 2023 22:57:08 +0700 Message-Id: <20230112155709.303615-4-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230112155709.303615-1-ammar.faizi@intel.com> References: <20230112155709.303615-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Ammar Faizi - Fix a typo: 's/is adjust/is adjusted/'. - Fix indentation. Signed-off-by: Ammar Faizi --- src/include/liburing.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/liburing.h b/src/include/liburing.h index cc3677e..c7139ef 100644 --- a/src/include/liburing.h +++ b/src/include/liburing.h @@ -388,8 +388,8 @@ IOURINGINLINE void io_uring_prep_rw(int op, struct io_uring_sqe *sqe, int fd, * @param off_in If fd_in refers to a pipe, off_in must be (int64_t) -1; * If fd_in does not refer to a pipe and off_in is (int64_t) -1, * then bytes are read from fd_in starting from the file offset - * and it is adjust appropriately; - * If fd_in does not refer to a pipe and off_in is not + * and it is adjusted appropriately; + * If fd_in does not refer to a pipe and off_in is not * (int64_t) -1, then the starting offset of fd_in will be * off_in. * @param off_out The description of off_in also applied to off_out. -- Ammar Faizi