diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-30 22:06:52 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-30 22:06:52 (GMT) |
commit | 5e3677d7afbf6933b1638c24fa5ad930e8644768 (patch) | |
tree | defb32628c66a317b4243864dccf339f11b4bff0 /Doc/library/pathlib.rst | |
parent | 06a8ac0f26e722c92abd73780bcd155d17865436 (diff) | |
download | cpython-5e3677d7afbf6933b1638c24fa5ad930e8644768.zip cpython-5e3677d7afbf6933b1638c24fa5ad930e8644768.tar.gz cpython-5e3677d7afbf6933b1638c24fa5ad930e8644768.tar.bz2 |
Fix markup in pathlib.rst
Diffstat (limited to 'Doc/library/pathlib.rst')
-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 a6ad156..fd83a81 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -921,7 +921,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() |