diff options
| author | Wolfgang Stöggl <c72578@yahoo.de> | 2019-11-06 14:49:00 +0100 |
|---|---|---|
| committer | Michael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com> | 2019-11-06 09:55:30 -0500 |
| commit | f037e7ef4538b37625c0893d32cad36e72648c8a (patch) | |
| tree | 90c594eac530b600ac64168e50f2f8a298ebff56 /mesonbuild/cmake/traceparser.py | |
| parent | f56ef583d3c8ecda7725ca04b48011c9081a7349 (diff) | |
| download | meson-f037e7ef4538b37625c0893d32cad36e72648c8a.tar.gz | |
Fix typos found by codespell
- Typos were found by codespell v1.16.0
Diffstat (limited to 'mesonbuild/cmake/traceparser.py')
| -rw-r--r-- | mesonbuild/cmake/traceparser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/cmake/traceparser.py b/mesonbuild/cmake/traceparser.py index 4d6892494..7daef0b1c 100644 --- a/mesonbuild/cmake/traceparser.py +++ b/mesonbuild/cmake/traceparser.py @@ -499,11 +499,11 @@ class CMakeTraceParser: if curr_str is None: curr_str = i elif os.path.isfile(curr_str): - # Abort concatination if curr_str is an existing file + # Abort concatenation if curr_str is an existing file fixed_list += [curr_str] curr_str = i elif not reg_start.match(curr_str): - # Abort concatination if curr_str no longer matches the regex + # Abort concatenation if curr_str no longer matches the regex fixed_list += [curr_str] curr_str = i elif reg_end.match(i) or os.path.exists('{} {}'.format(curr_str, i)): |
