diff --git a/README.md b/README.md index 0fba54b..4f149f5 100644 --- a/README.md +++ b/README.md @@ -970,21 +970,21 @@ pwd = Path() ``` ```python - = .iterdir() # Returns all files in a dir. - = .glob('') # Returns all matches. - = .resolve() # Makes path absolute. - = .exists() - = .is_dir() - = .open() + = .iterdir() # Returns all files in a dir. + = .glob('') # Returns all matches. + = .resolve() # Makes path absolute. + = .exists() + = .is_dir() + = .open() ``` ```python - = str() # Returns path as string. - = .name # Final component. - = .stem # Final component without extension. - = .suffix # Final component's extension. - = .parent # Path without final component. - = .parts # All components as strings. + = str() # Returns path as string. + = .name # Final component. + = .stem # Final component without extension. + = .suffix # Final component's extension. + = .parent # Path without final component. + = .parts # All components as strings. ```