bpo-40122: Updated documentation for dis.findlabels() (GH-19274)
(cherry picked from commit b74468e233a5137ff518e61eff65ca2d8833e38a)
Co-authored-by: laike9m <laike9m@users.noreply.github.com>
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index f4dfe16..34ae1a3 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -244,7 +244,7 @@
.. function:: findlabels(code)
- Detect all offsets in the code object *code* which are jump targets, and
+ Detect all offsets in the raw compiled bytecode string *code* which are jump targets, and
return a list of these offsets.