summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs/path.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/path.py b/fs/path.py
index 67aa481..57c587e 100644
--- a/fs/path.py
+++ b/fs/path.py
@@ -274,10 +274,10 @@ def isdotfile(path):
>>> isdotfile('.baz')
True
- >>> isdotfile('foo/bar/baz')
+ >>> isdotfile('foo/bar/.baz')
True
- >>> isdotfile('foo/bar.baz').
+ >>> isdotfile('foo/bar.baz')
False
"""