Skip to content

Commit 67d8967

Browse files
YakovLcodebytere
authored andcommitted
doc: add explanatory to path.resolve description
Fixes: #25542 PR-URL: #31430 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 049a172 commit 67d8967

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/api/path.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,8 @@ an absolute path.
477477
The given sequence of paths is processed from right to left, with each
478478
subsequent `path` prepended until an absolute path is constructed.
479479
For instance, given the sequence of path segments: `/foo`, `/bar`, `baz`,
480-
calling `path.resolve('/foo', '/bar', 'baz')` would return `/bar/baz`.
480+
calling `path.resolve('/foo', '/bar', 'baz')` would return `/bar/baz`
481+
because `'baz'` is not an absolute path but `'/bar' + '/' + 'baz'` is.
481482

482483
If after processing all given `path` segments an absolute path has not yet
483484
been generated, the current working directory is used.

0 commit comments

Comments
 (0)