We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f444470 commit c527b8fCopy full SHA for c527b8f
git/diff.py
@@ -467,7 +467,7 @@ def rename_to(self) -> Optional[str]:
467
@property
468
def renamed(self) -> bool:
469
"""
470
- :returns: True if the blob of our diff has been renamed
+ :return: True if the blob of our diff has been renamed
471
472
:note: This property is deprecated.
473
Please use the :attr:`renamed_file` property instead.
@@ -476,7 +476,7 @@ def renamed(self) -> bool:
476
477
478
def renamed_file(self) -> bool:
479
- """:returns: True if the blob of our diff has been renamed"""
+ """:return: True if the blob of our diff has been renamed"""
480
return self.rename_from != self.rename_to
481
482
@classmethod
0 commit comments