From 0c533d5b5f461c5c0d72f1a29143b2dd67e0895a Mon Sep 17 00:00:00 2001 From: alec-hs <6503411+alec-hs@users.noreply.github.com> Date: Wed, 26 Oct 2022 00:15:12 +0100 Subject: [PATCH] Fix typos and docs comments --- steam/core/manifest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/steam/core/manifest.py b/steam/core/manifest.py index 51e321b..644ab07 100644 --- a/steam/core/manifest.py +++ b/steam/core/manifest.py @@ -75,7 +75,7 @@ class DepotFile(object): @property def sha_content(self): - """File SHA1 + """File content SHA1 :type: bytes """ @@ -83,11 +83,11 @@ class DepotFile(object): @property def sha_filename(self): - """File SHA1 + """Filename SHA1 :type: bytes """ - return self.file_mapping.sha_content + return self.file_mapping.sha_filename @property def size(self):