diff options
-rw-r--r-- | Doc/library/pathlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index fe049de040..61600c4bf6 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -930,7 +930,7 @@ call fails (for example because the path doesn't exist): >>> p.resolve() PosixPath('/home/antoine/pathlib') - `".."` components are also eliminated (this is the only method to do so):: + "``..``" components are also eliminated (this is the only method to do so):: >>> p = Path('docs/../setup.py') >>> p.resolve() |