From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752831AbcGKXDJ (ORCPT ); Mon, 11 Jul 2016 19:03:09 -0400 Received: from lists.s-osg.org ([54.187.51.154]:58026 "EHLO lists.s-osg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751042AbcGKXDG (ORCPT ); Mon, 11 Jul 2016 19:03:06 -0400 From: Luis de Bethencourt To: linux-kernel@vger.kernel.org Cc: akpm@linux-foundation.org, viro@zeniv.linux.org.uk, salah.triki@gmail.com, Luis de Bethencourt Subject: [PATCH 3/3] befs: fix typo in befs_bt_read_node documentation Date: Tue, 12 Jul 2016 00:02:50 +0100 Message-Id: <1468278170-3550-3-git-send-email-luisbg@osg.samsung.com> X-Mailer: git-send-email 2.5.1 In-Reply-To: <1468278170-3550-1-git-send-email-luisbg@osg.samsung.com> References: <1468278170-3550-1-git-send-email-luisbg@osg.samsung.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fixing a grammatical error in the documentation. Signed-off-by: Luis de Bethencourt --- Hi, Since befs_bt_read_node() calls befs_read_datastream(), and was touched in the first commit of the series I decided to send a fix for the grammatical error I had noticed there a while ago. Thanks for all the reviews, Luis fs/befs/btree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/befs/btree.c b/fs/befs/btree.c index 2b5b635..bf12b2c 100644 --- a/fs/befs/btree.c +++ b/fs/befs/btree.c @@ -181,8 +181,8 @@ befs_bt_read_super(struct super_block *sb, const befs_data_stream *ds, * Calls befs_read_datastream to read in the indicated btree node and * makes sure its header fields are in cpu byteorder, byteswapping if * necessary. - * Note: node->bh must be NULL when this function called first - * time. Don't forget brelse(node->bh) after last call. + * Note: node->bh must be NULL when this function is called the first time. + * Don't forget brelse(node->bh) after last call. * * On success, returns BEFS_OK and *@node contains the btree node that * starts at @node_off, with the node->head fields in cpu byte order. -- 2.5.3