Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Doc/library/os.path.rst
  • Loading branch information
hauntsaninja authored Jan 7, 2023
commit a2a6c81259f6194ddd2de43a6b14eb983b8932bc
2 changes: 1 addition & 1 deletion Doc/library/os.path.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ the :mod:`glob` module.)
.. function:: join(path, *paths)

Join one or more path segments intelligently. The return value is the
concatenation of *path* and any members of *\*paths* with exactly one
concatenation of *path* and all members of *\*paths*, with exactly one
Comment thread
hauntsaninja marked this conversation as resolved.
directory separator following each non-empty part except the last, meaning
that the result will only end in a separator if the last part is empty. If
Comment thread
hauntsaninja marked this conversation as resolved.
Outdated
a segment is an absolute path (which on Windows requires both a drive and a
Expand Down