From: Colin Ian King Date: Thu, 4 Sep 2025 09:09:04 +0000 (+0100) Subject: perf python: Fix spelling mistake "metics" -> "metrics" X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=3ff7ce84e18151578352c2b28320824b42df114b;p=users%2Fhch%2Fmisc.git perf python: Fix spelling mistake "metics" -> "metrics" There is a spelling mistake in a Python doc string. Fix it. Fixes: d0550be70f7ab84d ("perf python: Add parse_metrics function") Reviewed-by: Ian Rogers Signed-off-by: Colin Ian King Cc: Adrian Hunter Cc: Alexander Shishkin Cc: Ian Rogers Cc: Ingo Molnar Cc: Jiri Olsa Cc: Kan Liang Cc: kernel-janitors@vger.kernel.org Cc: Mark Rutland Cc: Namhyung Kim Cc: Peter Zijlstra Link: https://lore.kernel.org/r/20250904090904.2782814-1-colin.i.king@gmail.com Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/python.c b/tools/perf/util/python.c index 47178404802f..779fe1280a56 100644 --- a/tools/perf/util/python.c +++ b/tools/perf/util/python.c @@ -2187,7 +2187,7 @@ static PyMethodDef perf__methods[] = { .ml_meth = (PyCFunction) pyrf__parse_metrics, .ml_flags = METH_VARARGS, .ml_doc = PyDoc_STR( - "Parse a string of metics or metric groups and return an evlist.") + "Parse a string of metrics or metric groups and return an evlist.") }, { .ml_name = "pmus",