[PATCH][next] perf script: task-analyzer: Fix spelling mistake "miliseconds" -> "millseconds"

Colin Ian King posted 1 patch 2 years, 8 months ago
tools/perf/scripts/python/task-analyzer.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] perf script: task-analyzer: Fix spelling mistake "miliseconds" -> "millseconds"
Posted by Colin Ian King 2 years, 8 months ago
There is a spelling mistake in the help for the --ms option. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/perf/scripts/python/task-analyzer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/scripts/python/task-analyzer.py b/tools/perf/scripts/python/task-analyzer.py
index 52e8dae9b1f0..3f1df9894246 100755
--- a/tools/perf/scripts/python/task-analyzer.py
+++ b/tools/perf/scripts/python/task-analyzer.py
@@ -114,7 +114,7 @@ def _parse_args():
         "--ns", action="store_true", help="show timestamps in nanoseconds"
     )
     parser.add_argument(
-        "--ms", action="store_true", help="show timestamps in miliseconds"
+        "--ms", action="store_true", help="show timestamps in milliseconds"
     )
     parser.add_argument(
         "--extended-times",
-- 
2.30.2
Re: [PATCH][next] perf script: task-analyzer: Fix spelling mistake "miliseconds" -> "millseconds"
Posted by Hagen Paul Pfeifer 2 years, 8 months ago
* Colin Ian King | 2023-04-17 18:48:26 [+0100]:

>There is a spelling mistake in the help for the --ms option. Fix it.
>
>Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Good catch - thank you Colin!

Acked-by: Hagen Paul Pfeifer <hagen@jauu.net>
Re: [PATCH][next] perf script: task-analyzer: Fix spelling mistake "miliseconds" -> "millseconds"
Posted by Arnaldo Carvalho de Melo 2 years, 8 months ago
Em Mon, Apr 17, 2023 at 08:27:07PM +0200, Hagen Paul Pfeifer escreveu:
> * Colin Ian King | 2023-04-17 18:48:26 [+0100]:
> 
> >There is a spelling mistake in the help for the --ms option. Fix it.
> >
> >Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> 
> Good catch - thank you Colin!
> 
> Acked-by: Hagen Paul Pfeifer <hagen@jauu.net>

Thanks, applied, and fixed the subject line typo.

- Arnaldo
Re: [PATCH][next] perf script: task-analyzer: Fix spelling mistake "miliseconds" -> "millseconds"
Posted by Ian Rogers 2 years, 8 months ago
On Mon, Apr 17, 2023 at 10:48 AM Colin Ian King <colin.i.king@gmail.com> wrote:
>
> There is a spelling mistake in the help for the --ms option. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Seems like a similar fix is needed to the patch Subject of
"millseconds" :-) Other than that:
Acked-by: Ian Rogers <irogers@google.com>

Thanks,
Ian

> ---
>  tools/perf/scripts/python/task-analyzer.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/scripts/python/task-analyzer.py b/tools/perf/scripts/python/task-analyzer.py
> index 52e8dae9b1f0..3f1df9894246 100755
> --- a/tools/perf/scripts/python/task-analyzer.py
> +++ b/tools/perf/scripts/python/task-analyzer.py
> @@ -114,7 +114,7 @@ def _parse_args():
>          "--ns", action="store_true", help="show timestamps in nanoseconds"
>      )
>      parser.add_argument(
> -        "--ms", action="store_true", help="show timestamps in miliseconds"
> +        "--ms", action="store_true", help="show timestamps in milliseconds"
>      )
>      parser.add_argument(
>          "--extended-times",
> --
> 2.30.2
>