[PATCH][next] perf report: Fix spelling mistake "heirachy" -> "hierarchy"

Colin Ian King posted 1 patch 2 years, 1 month ago
tools/perf/builtin-report.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] perf report: Fix spelling mistake "heirachy" -> "hierarchy"
Posted by Colin Ian King 2 years, 1 month ago
There is a spelling mistake in a ui error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/perf/builtin-report.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index ca8f2331795c..9cb1da2dc0c0 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -705,7 +705,7 @@ static int report__collapse_hists(struct report *rep)
 	 */
 	if (perf_data__is_pipe(session->data)) {
 		if (perf_hpp__setup_hists_formats(&perf_hpp_list, evlist) < 0) {
-			ui__error("Failed to setup hierachy output formats\n");
+			ui__error("Failed to setup hierarchy output formats\n");
 			return -1;
 		}
 	}
-- 
2.39.2
Re: [PATCH][next] perf report: Fix spelling mistake "heirachy" -> "hierarchy"
Posted by Namhyung Kim 2 years, 1 month ago
On Fri, 27 Oct 2023 09:40:11 +0100, Colin Ian King wrote:
> There is a spelling mistake in a ui error message. Fix it.
> 
> 

Applied to perf-tools-next, thanks!