Fix UNC path example (Oleg Broytman)

This commit is contained in:
Antoine Pitrou 2012-10-06 01:04:26 +02:00
parent a5cb91b260
commit d1323b7822
1 changed files with 2 additions and 2 deletions

View File

@ -214,8 +214,8 @@ First a couple of conventions:
* A POSIX path is absolute if it has a root. A Windows path is absolute if
it has both a drive *and* a root. A Windows UNC path (e.g.
``\\some\\share\\myfile.txt``) always has a drive and a root
(here, ``\\some\\share`` and ``\\``, respectively).
``\\some\share\myfile.txt``) always has a drive and a root
(here, ``\\some\share`` and ``\``, respectively).
* A drive which has either a drive *or* a root is said to be anchored.
Its anchor is the concatenation of the drive and root. Under POSIX,