From 215b1a7f14595028c4976b64058081622b6ed786 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Fri, 23 Sep 2022 16:48:32 +0400 Subject: [PATCH] Typo in docs with leading/trailing slash --- docs/howto/files.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/howto/files.md b/docs/howto/files.md index c23892e..7bc83a8 100644 --- a/docs/howto/files.md +++ b/docs/howto/files.md @@ -29,9 +29,9 @@ and contain almost the same properties and methods. (So it's more correct to call it "Object in the server's filesystem", but I chose an easier name for the class.) - - `path` - Full path to the file **including trailing** slash and **without leading** slash. - - `name` - Filename with extension **without trailing** slash. - - `dirname` - Full path to the directory which contains the file **without leading** slash. + - `path` - Full path to the file **including leading** slash and **without trailing** slash. + - `name` - Filename with extension **without leading** slash. + - `dirname` - Full path to the directory which contains the file **without trailing** slash. - `is_file` and `is_dir` - File type in boolean. - `ftype` - File type in `FileType` enum value: - `FileType.file`