From: Berker Peksag Date: Fri, 30 Sep 2016 22:06:52 +0000 (+0300) Subject: Fix markup in pathlib.rst X-Git-Tag: v3.6.0b2~81^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e3677d7afbf6933b1638c24fa5ad930e8644768;p=thirdparty%2FPython%2Fcpython.git Fix markup in pathlib.rst --- diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index a6ad1568833f..fd83a8198458 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()