Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf docs: Fix a typo in 'perf probe' man page: l20th -> 120th

Fix a minor typo in 'perf probe' doc.

Fixes: 631c9def804b2c92 ("perf probe: Support --line option to show probable source-code lines")
Signed-off-by: qinyu <qinyu32@huawei.com>
Acked-by: Ian Rogers <irogers@google.com>
Cc: Feilong Lin <linfeilong@huawei.com>
Cc: Hewenliang <hewenliang4@huawei.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20230116012143.432435-1-qinyu32@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

qinyu and committed by
Arnaldo Carvalho de Melo
3524f89e 485c5bc5

+1 -1
+1 -1
tools/perf/Documentation/perf-probe.txt
··· 222 222 and 'ALN2' is end line number in the file. It is also possible to specify how 223 223 many lines to show by using 'NUM'. Moreover, 'FUNC@SRC' combination is good 224 224 for searching a specific function when several functions share same name. 225 - So, "source.c:100-120" shows lines between 100th to l20th in source.c file. And "func:10+20" shows 20 lines from 10th line of func function. 225 + So, "source.c:100-120" shows lines between 100th to 120th in source.c file. And "func:10+20" shows 20 lines from 10th line of func function. 226 226 227 227 LAZY MATCHING 228 228 -------------