Skip to content

Commit 311c982

Browse files
committed
Fix grammar in docstrings
1 parent cb03c5c commit 311c982

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyfakefs/fake_filesystem.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3449,7 +3449,7 @@ def islink(self, path: AnyPath) -> bool:
34493449
if sys.version_info >= (3, 12):
34503450

34513451
def isjunction(self, path: AnyPath) -> bool:
3452-
"""Junction are never faked."""
3452+
"""Returns False. Junctions are never faked."""
34533453
return False
34543454

34553455
def confirmdir(
@@ -3720,7 +3720,7 @@ def islink(self, path: AnyStr) -> bool:
37203720
if sys.version_info >= (3, 12):
37213721

37223722
def isjunction(self, path: AnyStr) -> bool:
3723-
"""Junction are never faked."""
3723+
"""Returns False. Junctions are never faked."""
37243724
return self.filesystem.isjunction(path)
37253725

37263726
def getmtime(self, path: AnyStr) -> float:

0 commit comments

Comments
 (0)