We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89bf6c0 commit e6e616fCopy full SHA for e6e616f
doc/api/path.markdown
@@ -200,7 +200,7 @@ An example on Windows:
200
201
process.env.PATH.split(path.delimiter)
202
// returns
203
- ['C:\Windows\system32', 'C:\Windows', 'C:\Program Files\iojs\']
+ ['C:\\Windows\\system32', 'C:\\Windows', 'C:\\Program Files\\iojs\\']
204
205
## path.parse(pathString)
206
@@ -223,8 +223,8 @@ An example on Windows:
223
path.parse('C:\\path\\dir\\index.html')
224
225
{
226
- root : "C:\",
227
- dir : "C:\path\dir",
+ root : "C:\\",
+ dir : "C:\\path\\dir",
228
base : "index.html",
229
ext : ".html",
230
name : "index"
0 commit comments