Skip to content

Commit 5360c03

Browse files
committed
Fix get_hash docstring
1 parent 229d7a2 commit 5360c03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/docxplain/converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def insert_header(path: Path, header: str) -> None:
6161

6262

6363
def get_hash(path: Path) -> str:
64-
"""Get the SHA256 hash diget of a file."""
64+
"""Get the SHA256 hash digest of a file."""
6565
m = hashlib.sha256()
6666
m.update(path.read_bytes())
6767
return m.hexdigest()

0 commit comments

Comments
 (0)