[PATCH] Documentation/admin-guide: fix typo in cscope command example

From: eanut 6

Date: Tue Nov 18 2025 - 02:00:23 EST


The documentation previously had a typo:
c"scope -d -p10
which would confuse users. This patch corrects it to:
cscope -d -p10

Signed-off-by: Jiakai Xu <jiakaiPeanut@xxxxxxxxx>
---
Documentation/admin-guide/workload-tracing.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/admin-guide/workload-tracing.rst
b/Documentation/admin-guide/workload-tracing.rst
index d6313890ee41..dbdbed4a1b41 100644
--- a/Documentation/admin-guide/workload-tracing.rst
+++ b/Documentation/admin-guide/workload-tracing.rst
@@ -196,7 +196,7 @@ Let’s checkout the latest Linux repository and
build cscope database::
cscope -R -p10 # builds cscope.out database before starting browse session
cscope -d -p10 # starts browse session on cscope.out database

-Note: Run "cscope -R -p10" to build the database and c"scope -d -p10" to
+Note: Run "cscope -R -p10" to build the database and "cscope -d -p10" to
enter into the browsing session. cscope by default cscope.out database.
To get out of this mode press ctrl+d. -p option is used to specify the
number of file path components to display. -p10 is optimal for browsing
--
2.34.1