Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f444470 commit db317f1Copy full SHA for db317f1
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