[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-26ddb8722df865aa67fbe459107d2f3f8e5c6829@git.kernel.org>
Date: Thu, 8 Jun 2017 15:47:55 -0700
From: tip-bot for SeongJae Park <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, mingo@...nel.org, fweisbec@...il.com,
tglx@...utronix.de, hpa@...or.com, tzanussi@...il.com,
alexander.shishkin@...ux.intel.com, peterz@...radead.org,
acme@...hat.com, sj38.park@...il.com
Subject: [tip:perf/urgent] perf script python: Fix wrong code snippets in
documentation
Commit-ID: 26ddb8722df865aa67fbe459107d2f3f8e5c6829
Gitweb: http://git.kernel.org/tip/26ddb8722df865aa67fbe459107d2f3f8e5c6829
Author: SeongJae Park <sj38.park@...il.com>
AuthorDate: Tue, 30 May 2017 20:18:26 +0900
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Wed, 7 Jun 2017 20:27:26 -0300
perf script python: Fix wrong code snippets in documentation
This commit fixes wrong code snippets for trace_begin() and trace_end()
function example definition.
Signed-off-by: SeongJae Park <sj38.park@...il.com>
Cc: Alexander Shishkin <alexander.shishkin@...ux.intel.com>
Cc: Frederic Weisbecker <fweisbec@...il.com>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Tom Zanussi <tzanussi@...il.com>
Fixes: cff68e582237 ("perf/scripts: Add perf-trace-python Documentation")
Link: http://lkml.kernel.org/r/20170530111827.21732-5-sj38.park@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/Documentation/perf-script-python.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/perf/Documentation/perf-script-python.txt b/tools/perf/Documentation/perf-script-python.txt
index 087b87c9..bad6e93 100644
--- a/tools/perf/Documentation/perf-script-python.txt
+++ b/tools/perf/Documentation/perf-script-python.txt
@@ -532,7 +532,7 @@ can implement a set of optional functions:
gives scripts a chance to do setup tasks:
----
-def trace_begin:
+def trace_begin():
pass
----
@@ -541,7 +541,7 @@ def trace_begin:
as display results:
----
-def trace_end:
+def trace_end():
pass
----
Powered by blists - more mailing lists