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 DE019C6FD1D for ; Sat, 1 Apr 2023 07:38:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233538AbjDAHij (ORCPT ); Sat, 1 Apr 2023 03:38:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39468 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233517AbjDAHii (ORCPT ); Sat, 1 Apr 2023 03:38:38 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CBF211A442; Sat, 1 Apr 2023 00:38:37 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 53B3860B27; Sat, 1 Apr 2023 07:38:37 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 01A2EC433EF; Sat, 1 Apr 2023 07:38:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1680334716; bh=K3jsq7d7yI0aBSxu4a3vZPycD2Aw4HuThVUcruzSGvM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=XOapJj24TwSpj1O4a/K1z07Kv6lgVXVRGXrU77hLqiRtHXe+uAEMtxxOHNqV7aukZ mueLWP6gjh9VpzoL7fbK788HZB/s6kHbOVFlhieBWb9Cc56d8L/hlcJVKHphYj23q9 eQh9spAnGAp4vhk7RrBItRj4hYLyRDFcrUas5V5hhUya/GGsW3zPc/cFro4QhQNyv4 pvKGoGrxiai1/N+rcLSi1jb3y90XXdfVjh6bcJDVgYkSLKDIrJJKtzC5K9E+S6wOme uaKxwVCiWeHRq0YlSwEWnPp7ej9y77BYlqUP2zoA/A8fJHSMpr95CzFBNLmYQWdeDw 2KseV7YgUCu8w== Date: Sat, 1 Apr 2023 10:38:24 +0300 From: Mike Rapoport To: Kim Phillips Cc: Jonathan Corbet , linux-doc@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] docs/mm: Physical Memory: Fix grammar Message-ID: References: <20230331165254.207526-1-kim.phillips@amd.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230331165254.207526-1-kim.phillips@amd.com> Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org On Fri, Mar 31, 2023 at 11:52:54AM -0500, Kim Phillips wrote: > it's -> its > referenced to by -> referenced by > > Fixes: 5d8c5e430a63 ("docs/mm: Physical Memory: add structure, introduction and nodes description") > Signed-off-by: Kim Phillips Reviewed-by: Mike Rapoport (IBM) > --- > Documentation/mm/physical_memory.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst > index 1bc888d36ea1..df2ed81e3639 100644 > --- a/Documentation/mm/physical_memory.rst > +++ b/Documentation/mm/physical_memory.rst > @@ -19,7 +19,7 @@ a bank of memory very suitable for DMA near peripheral devices. > > Each bank is called a node and the concept is represented under Linux by a > ``struct pglist_data`` even if the architecture is UMA. This structure is > -always referenced to by it's typedef ``pg_data_t``. ``A pg_data_t`` structure > +always referenced by its typedef ``pg_data_t``. A ``pg_data_t`` structure > for a particular node can be referenced by ``NODE_DATA(nid)`` macro where > ``nid`` is the ID of that node. > > -- > 2.34.1 > -- Sincerely yours, Mike.