diff --git a/README.md b/README.md index fd56873..9f81da6 100644 --- a/README.md +++ b/README.md @@ -1596,7 +1596,7 @@ cwd = Path() ```python = .resolve() # Returns absolute path without symlinks. = .parent # Returns path without final component. - = open() # Opens a file and returns file object. + = open() # Opens the file and returns a file object. ``` diff --git a/index.html b/index.html index 52194de..fcc2714 100644 --- a/index.html +++ b/index.html @@ -1453,7 +1453,7 @@ value = args.<name>
<Path> = <Path>.resolve()          # Returns absolute path without symlinks.
 <Path> = <Path>.parent             # Returns path without final component.
-<file> = open(<Path>)              # Opens a file and returns file object.
+<file> = open(<Path>)              # Opens the file and returns a file object.
 

#Command Execution

Files and Directories

  • Paths can be either strings, Paths, or DirEntry objects.