summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorDongWoo Son <99868561+dnd-qodqks@users.noreply.github.com>2023-09-18 07:27:54 (GMT)
committerGitHub <noreply@github.com>2023-09-18 07:27:54 (GMT)
commitdf8b3a46a7aa369f246a09ffd11ceedf1d34e921 (patch)
treeed3191229afcb38823e8d263fc9bedf2dfeb62f4 /Tools
parentce5b3e19e6fb940fa72db1b98a8df80f6e464265 (diff)
downloadcpython-df8b3a46a7aa369f246a09ffd11ceedf1d34e921.zip
cpython-df8b3a46a7aa369f246a09ffd11ceedf1d34e921.tar.gz
cpython-df8b3a46a7aa369f246a09ffd11ceedf1d34e921.tar.bz2
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>
Diffstat (limited to 'Tools')
-rw-r--r--Tools/c-analyzer/c_parser/info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/c-analyzer/c_parser/info.py b/Tools/c-analyzer/c_parser/info.py
index 799f923..f96172e 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):