diff options
author | algonell <algonell@gmail.com> | 2024-09-09 15:58:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 14:58:26 +0200 |
commit | 9017b95ff2dcff16bcb0b0a609ed2b0daa845943 (patch) | |
tree | b7585aa38d40524cd8a0244f5577e50c0ffaaf07 /Tools/c-analyzer/c_parser/preprocessor/gcc.py | |
parent | df4f0cbfad8a1ed0146cabd30d01efd135d4d048 (diff) | |
download | cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.tar.gz cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.zip |
Fix typos (#123775)
Diffstat (limited to 'Tools/c-analyzer/c_parser/preprocessor/gcc.py')
-rw-r--r-- | Tools/c-analyzer/c_parser/preprocessor/gcc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/c-analyzer/c_parser/preprocessor/gcc.py b/Tools/c-analyzer/c_parser/preprocessor/gcc.py index bb5ec5ae087..d20cd19f6e6 100644 --- a/Tools/c-analyzer/c_parser/preprocessor/gcc.py +++ b/Tools/c-analyzer/c_parser/preprocessor/gcc.py @@ -149,7 +149,7 @@ def _iter_top_include_lines(lines, topfile, cwd, raw): partial = 0 # depth files = [topfile] - # We start at 1 in case there are source lines (including blank onces) + # We start at 1 in case there are source lines (including blank ones) # before the first marker line. Also, we already verified in # _parse_marker_line() that the preprocessor reported lno as 1. lno = 1 |