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 B8ED7C072A2 for ; Fri, 17 Nov 2023 15:43:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346112AbjKQPnM (ORCPT ); Fri, 17 Nov 2023 10:43:12 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60926 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232824AbjKQPnC (ORCPT ); Fri, 17 Nov 2023 10:43:02 -0500 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 678291706; Fri, 17 Nov 2023 07:42:56 -0800 (PST) Received: from localhost (unknown [75.104.68.237]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 5F22144A; Fri, 17 Nov 2023 15:42:55 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 5F22144A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1700235776; bh=y5uEFwYQ2yewPkjfR6+VJLmqWoBBC8vTFyqS4NCQCkg=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=YnZMivVLK3liC2PcXQ6p5IxcE82VN32R7yai4c8viHHfKZ/K3+wsKaXR/Lj5Er59f +JSONrVZnn78ydyuzSMQD1RtJIFPp7iWXfWAxRsyMstt4g1lC2snZQECrA49JNfKJb SZeKQ6Y2z3eeVpsyN/6PeqUi325H7w2uvZktQuWX3UY5sCe/3VVK70JyLXDBOtrUX3 VgPnDMrGrcPiO9kqmprSyeK7e3AjyhHIyL7nda0+yb9KyYri/F0a6psUb+rfXej86T KEehhaVPIChEueKQIVYjOnHb/0ojhaOtArPXe6m3AJ6SGqvEz/fwB1YC5i3Ve9Yg7B ckA9Rb177FPlQ== From: Jonathan Corbet To: Ariel Miculas , linux-doc@vger.kernel.org Cc: serge@hallyn.com, Ariel Miculas , "Matthew Wilcox (Oracle)" , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] docs: vfs: fix typo in struct xattr_handlers In-Reply-To: <20231027152101.226296-1-amiculas@cisco.com> References: <20231027152101.226296-1-amiculas@cisco.com> Date: Fri, 17 Nov 2023 08:42:48 -0700 Message-ID: <87il60xu6f.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Ariel Miculas writes: > The structure is called struct xattr_handler, singular, not plural. > Fixing the typo also makes it greppable with the whole word matching > flag. > > Signed-off-by: Ariel Miculas > --- > Documentation/filesystems/vfs.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/filesystems/vfs.rst b/Documentation/filesystems/vfs.rst > index 99acc2e98673..276a219ff8d9 100644 > --- a/Documentation/filesystems/vfs.rst > +++ b/Documentation/filesystems/vfs.rst > @@ -437,7 +437,7 @@ field. This is a pointer to a "struct inode_operations" which describes > the methods that can be performed on individual inodes. > > > -struct xattr_handlers > +struct xattr_handler > --------------------- Applied, thanks. jon