bin: Fix typos

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22189>
This commit is contained in:
Harri Nieminen
2023-03-29 17:19:04 +03:00
committed by Marge Bot
parent db582e5e7d
commit fd767a4517
9 changed files with 13 additions and 13 deletions

View File

@@ -78,9 +78,9 @@ def commit(message: str) -> None:
def _calculate_release_start(major: str, minor: str) -> datetime.date:
"""Calclulate the start of the release for release candidates.
"""Calculate the start of the release for release candidates.
This is quarterly, on the second wednesday, in Januray, April, July, and Octobor.
This is quarterly, on the second wednesday, in January, April, July, and October.
"""
quarter = datetime.date.fromisoformat(f'20{major}-0{[1, 4, 7, 10][int(minor)]}-01')