From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 098C9ECAAD2 for ; Tue, 30 Aug 2022 00:57:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229650AbiH3A5m (ORCPT ); Mon, 29 Aug 2022 20:57:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56780 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229608AbiH3A5b (ORCPT ); Mon, 29 Aug 2022 20:57:31 -0400 Received: from linux.gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B86E390C57; Mon, 29 Aug 2022 17:57:13 -0700 (PDT) Received: from localhost.localdomain (unknown [68.183.184.174]) by linux.gnuweeb.org (Postfix) with ESMTPSA id 3A288374F1C; Tue, 30 Aug 2022 00:57:09 +0000 (UTC) From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Caleb Sander , Muhammad Rizki , Kanna Scarlet , io-uring Mailing List , Linux Kernel Mailing List , GNU/Weeb Mailing List Subject: [PATCH liburing v2 7/7] man/io_uring_enter.2: Fix typo "which is behaves" -> "which behaves" Date: Tue, 30 Aug 2022 07:56:43 +0700 Message-Id: <20220830005122.885209-8-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220830005122.885209-1-ammar.faizi@intel.com> References: <20220830005122.885209-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org From: Ammar Faizi Just a trivial grammatical error fix. Fixes: 1dbc9974486cbc5f60eeeca092fd434c40d3a484 ("man/io_uring_enter.2: document IORING_ENTER_EXT_ARG") Signed-off-by: Ammar Faizi --- man/io_uring_enter.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/io_uring_enter.2 b/man/io_uring_enter.2 index 85e582c..1a9311e 100644 --- a/man/io_uring_enter.2 +++ b/man/io_uring_enter.2 @@ -70,7 +70,7 @@ the following: .BI " const void *" arg ", size_t " argsz ); .fi -which is behaves just like the original definition by default. However, if +which behaves just like the original definition by default. However, if .B IORING_ENTER_EXT_ARG is set, then instead of a .I sigset_t -- Ammar Faizi