diff options
author | Pablo Galindo <pablogsal@gmail.com> | 2021-12-07 22:47:24 (GMT) |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2021-12-08 22:22:55 (GMT) |
commit | 3ea574f35b69235e17b7eb603bc5f1b026cf7d31 (patch) | |
tree | 1be62a4fa81023f37a22d683a7411ecc0b36d304 /Doc/reference | |
parent | 2109f7880b65755329a877da3a7f8a362de07350 (diff) | |
download | cpython-3ea574f35b69235e17b7eb603bc5f1b026cf7d31.zip cpython-3ea574f35b69235e17b7eb603bc5f1b026cf7d31.tar.gz cpython-3ea574f35b69235e17b7eb603bc5f1b026cf7d31.tar.bz2 |
Fix some false positives of documentation syntax problems
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 81dad77..aa0d91a 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -2331,7 +2331,7 @@ called:: from inspect import isclass def subscribe(obj, x): - """Return the result of the expression `obj[x]`""" + """Return the result of the expression 'obj[x]'""" class_of_obj = type(obj) |