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/fileapi.py | |
parent | f56ef583d3c8ecda7725ca04b48011c9081a7349 (diff) | |
download | meson-f037e7ef4538b37625c0893d32cad36e72648c8a.zip meson-f037e7ef4538b37625c0893d32cad36e72648c8a.tar.gz meson-f037e7ef4538b37625c0893d32cad36e72648c8a.tar.bz2 |
Fix typos found by codespell
- Typos were found by codespell v1.16.0
Diffstat (limited to 'mesonbuild/cmake/fileapi.py')
-rw-r--r-- | mesonbuild/cmake/fileapi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/cmake/fileapi.py b/mesonbuild/cmake/fileapi.py index df7c73a..5ee6ad0 100644 --- a/mesonbuild/cmake/fileapi.py +++ b/mesonbuild/cmake/fileapi.py @@ -155,7 +155,7 @@ class CMakeFileAPI: link_flags += [i['fragment']] # TODO The `dependencies` entry is new in the file API. - # maybe we can make use of that in addtion to the + # maybe we can make use of that in addition to the # implicit dependency detection tgt_data = { 'artifacts': [x.get('path', '') for x in tgt.get('artifacts', [])], @@ -175,7 +175,7 @@ class CMakeFileAPI: processed_src_idx = [] for cg in tgt.get('compileGroups', []): # Again, why an array, when there is usually only one element - # and arguments are seperated with spaces... + # and arguments are separated with spaces... flags = [] for i in cg.get('compileCommandFragments', []): flags += [i['fragment']] |