From: DongWoo Son <99868561+dnd-qodqks@users.noreply.github.com> Date: Mon, 18 Sep 2023 07:27:54 +0000 (+0900) Subject: Fix a typo in c-analyzer (#109213) X-Git-Tag: v3.13.0a1~408 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df8b3a46a7aa369f246a09ffd11ceedf1d34e921;p=thirdparty%2FPython%2Fcpython.git Fix a typo in c-analyzer (#109213) Co-authored-by: sunmy2019 <59365878+sunmy2019@users.noreply.github.com> Co-authored-by: Dale Collison <92315623+dcollison@users.noreply.github.com> --- diff --git a/Tools/c-analyzer/c_parser/info.py b/Tools/c-analyzer/c_parser/info.py index 799f92378774..f96172e8ca8d 100644 --- a/Tools/c-analyzer/c_parser/info.py +++ b/Tools/c-analyzer/c_parser/info.py @@ -206,7 +206,7 @@ class DeclID(namedtuple('DeclID', 'filename funcname name')): row = _tables.fix_row(row, **markers) return cls(*row) - # We have to provde _make() becaose we implemented __new__(). + # We have to provide _make() because we implemented __new__(). @classmethod def _make(cls, iterable):