Cleanup: spelling in comments

This commit is contained in:
Campbell Barton
2025-06-05 05:26:55 +00:00
parent ccb0dc50fb
commit b9fc0d3712

View File

@@ -411,7 +411,7 @@ class CommitInfo:
def generate_release_note_ready_string(self) -> str:
def sort_version_numbers(input_version_num: str) -> str:
# Pad to three digits for future proofness
# Pad to three digits to be future proof.
pad = 3
major, minor, patch = input_version_num.split(".")
return major.zfill(pad) + minor.zfill(pad) + patch.zfill(pad)