From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1946711AbdKRIib (ORCPT ); Sat, 18 Nov 2017 03:38:31 -0500 Received: from terminus.zytor.com ([65.50.211.136]:60683 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1946664AbdKRIiW (ORCPT ); Sat, 18 Nov 2017 03:38:22 -0500 Date: Sat, 18 Nov 2017 00:35:45 -0800 From: tip-bot for Kim Phillips Message-ID: Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, namhyung@kernel.org, tglx@linutronix.de, alexander.shishkin@linux.intel.com, mingo@kernel.org, peterz@infradead.org, acme@redhat.com, jolsa@redhat.com, kim.phillips@arm.com Reply-To: mingo@kernel.org, tglx@linutronix.de, alexander.shishkin@linux.intel.com, linux-kernel@vger.kernel.org, hpa@zytor.com, namhyung@kernel.org, jolsa@redhat.com, kim.phillips@arm.com, peterz@infradead.org, acme@redhat.com In-Reply-To: <20171114150447.f4b63bc5d97c83cdaa8bf7dc@arm.com> References: <20171114150447.f4b63bc5d97c83cdaa8bf7dc@arm.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf c2c: Fix spelling mistakes in browser help text Git-Commit-ID: 239fb4fed6c49110ebebe7378a84d96e3f0cf55d X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 239fb4fed6c49110ebebe7378a84d96e3f0cf55d Gitweb: https://git.kernel.org/tip/239fb4fed6c49110ebebe7378a84d96e3f0cf55d Author: Kim Phillips AuthorDate: Tue, 14 Nov 2017 15:04:47 -0600 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 16 Nov 2017 14:50:03 -0300 perf c2c: Fix spelling mistakes in browser help text Togle -> Toggle, lenght -> length. Signed-off-by: Kim Phillips Cc: Alexander Shishkin Cc: Jiri Olsa Cc: Namhyung Kim Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/20171114150447.f4b63bc5d97c83cdaa8bf7dc@arm.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/builtin-c2c.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/perf/builtin-c2c.c b/tools/perf/builtin-c2c.c index 17855c4..f1da9b0 100644 --- a/tools/perf/builtin-c2c.c +++ b/tools/perf/builtin-c2c.c @@ -2224,9 +2224,9 @@ static int perf_c2c__browse_cacheline(struct hist_entry *he) struct hist_browser *browser; int key = -1; const char help[] = - " ENTER Togle callchains (if present) \n" - " n Togle Node details info \n" - " s Togle full lenght of symbol and source line columns \n" + " ENTER Toggle callchains (if present) \n" + " n Toggle Node details info \n" + " s Toggle full length of symbol and source line columns \n" " q Return back to cacheline list \n"; /* Display compact version first. */ @@ -2303,7 +2303,7 @@ static int perf_c2c__hists_browse(struct hists *hists) int key = -1; const char help[] = " d Display cacheline details \n" - " ENTER Togle callchains (if present) \n" + " ENTER Toggle callchains (if present) \n" " q Quit \n"; browser = perf_c2c_browser__new(hists);