From fec77c16ac53e3d9d60f56364832b17f6ba93af0 Mon Sep 17 00:00:00 2001 From: Leon Wang Date: Wed, 5 Aug 2020 22:16:32 +0800 Subject: [PATCH] Fix a typo error in docs (#2098) --- docs/examples-profiling-perf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples-profiling-perf.md b/docs/examples-profiling-perf.md index 5e1132c4ae..40dd231854 100644 --- a/docs/examples-profiling-perf.md +++ b/docs/examples-profiling-perf.md @@ -132,7 +132,7 @@ Alternatively we could also use `perf annotate` to take a look at the disassembly of the `fib` function, seeing what the JIT generated: ```sh -$ perf annotate --input perf.jit-data +$ perf annotate --input perf.jit.data ``` ![perf annotate output](assets/perf-annotate-fib.png)