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 X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9FAC0C433E0 for ; Wed, 12 Aug 2020 12:10:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 67179207F7 for ; Wed, 12 Aug 2020 12:10:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1597234244; bh=av7EL/+gBRzAVCunZ5OvR7yASKD/9geQYpFNRwsu6q8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=NO8/VYo7CKiNByeJLJqA98TGaFVlYVgK5OiPOkjXp339zin0/3KOqCfZSEvKEFw8v h3gpDUUiisDT6lV655ONCaL9ff/Y1lEg+/dRn09ntec6hfIMrVhrm4TC6q/h22yuDP x4RLEAP2vq7BCEDfMIh3jNRoiGuwq+vKSVO3U4/w= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727903AbgHLMKn (ORCPT ); Wed, 12 Aug 2020 08:10:43 -0400 Received: from mail.kernel.org ([198.145.29.99]:37734 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726453AbgHLMKm (ORCPT ); Wed, 12 Aug 2020 08:10:42 -0400 Received: from quaco.ghostprotocols.net (179.176.8.134.dynamic.adsl.gvt.net.br [179.176.8.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 259B720656; Wed, 12 Aug 2020 12:10:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1597234242; bh=av7EL/+gBRzAVCunZ5OvR7yASKD/9geQYpFNRwsu6q8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Txsim/4fE4jW7+lNs5ALhWCLu4XFSHkFaCFS0RSR7EP7tEXoHZLhhzM6ldPmm9KOe Zuvtn50nP6J7ergDRcsF8MrB03Q7yn8EZbKJcjDShHNpJLPqZkx/1EQMvSjd+HlfJR YMl0qgPLghJ1w/nY5AtZ6aaoTkH9g7r2QB/bwmoo= Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 29425403C6; Wed, 12 Aug 2020 09:10:40 -0300 (-03) Date: Wed, 12 Aug 2020 09:10:40 -0300 From: Arnaldo Carvalho de Melo To: Colin King Cc: Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] perf bench: fix a couple of spelling mistakes in options text Message-ID: <20200812121040.GD13995@kernel.org> References: <20200812064647.200132-1-colin.king@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200812064647.200132-1-colin.king@canonical.com> X-Url: http://acmel.wordpress.com Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Aug 12, 2020 at 07:46:47AM +0100, Colin King escreveu: > From: Colin Ian King > > There are a couple of spelling mistakes in the text. Fix these. Thanks, applied. - Arnaldo > Signed-off-by: Colin Ian King > --- > tools/perf/bench/find-bit-bench.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/perf/bench/find-bit-bench.c b/tools/perf/bench/find-bit-bench.c > index fa90f3e9d368..73b5bcc5946a 100644 > --- a/tools/perf/bench/find-bit-bench.c > +++ b/tools/perf/bench/find-bit-bench.c > @@ -17,9 +17,9 @@ static unsigned int inner_iterations = 100000; > > static const struct option options[] = { > OPT_UINTEGER('i', "outer-iterations", &outer_iterations, > - "Number of outerer iterations used"), > + "Number of outer iterations used"), > OPT_UINTEGER('j', "inner-iterations", &inner_iterations, > - "Number of outerer iterations used"), > + "Number of inner iterations used"), > OPT_END() > }; > > -- > 2.27.0 > -- - Arnaldo