From 0816215bd12dc30759f00831a3319988895c818f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 18 Feb 2019 21:46:22 +0100 Subject: [PATCH] Pathlib --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c775011..a44e64e 100644 --- a/README.md +++ b/README.md @@ -986,7 +986,7 @@ pwd = Path() ```python = str() # Returns path as string. = .parts # Returns all components as strings. - = .resolve() # Makes path absolute. + = .resolve() # Returns absolute path. ``` ```python