Skip to content

Commit 3c096f0

Browse files
committed
Spelling
1 parent b1d1a09 commit 3c096f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

indra/literature/pubmed_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def _get_article_dates(pubmed_article_data: ET.Element) -> dict:
630630
res["year"] = int(year)
631631
if month := _find_elem_text(dt, "Month"):
632632
if isinstance(month, str):
633-
# Month mya be spelled out as "Jul" or "Aug" etc, or may be zero
633+
# Month may be spelled out as "Jul" or "Aug" etc, or may be zero
634634
# padded, e.g. 03 for March. Convert to integer
635635
if month.isdigit():
636636
month = int(month)

0 commit comments

Comments
 (0)