diff --git a/README.md b/README.md index 31c196e..d6fb2d7 100644 --- a/README.md +++ b/README.md @@ -978,16 +978,16 @@ pwd = Path() ``` ```python - = str() # Returns path as string. - = .parts # Returns all components as strings. - = .resolve() # Makes path absolute. + = str() # Returns path as string. + = .parts # Returns all components as strings. + = .resolve() # Makes path absolute. ``` ```python - = .name # Final component. - = .stem # Final component without extension. - = .suffix # Final component's extension. - = .parent # Path without final component. + = .name # Final component. + = .stem # Final component without extension. + = .suffix # Final component's extension. + = .parent # Path without final component. ```