[3.13] parser_generator.py typo - keywods -> keywords (GH-135014) (#136773)

Co-authored-by: chemelnucfin <3982092+chemelnucfin@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2025-07-19 11:17:27 +02:00 committed by GitHub
parent a45d3fd8be
commit 0936a53b03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,7 @@ def visit_NamedItem(self, item: NamedItem) -> None:
class KeywordCollectorVisitor(GrammarVisitor):
"""Visitor that collects all the keywods and soft keywords in the Grammar"""
"""Visitor that collects all the keywords and soft keywords in the Grammar"""
def __init__(self, gen: "ParserGenerator", keywords: Dict[str, int], soft_keywords: Set[str]):
self.generator = gen