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/environment.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/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index fccca16..5f3c25f 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -771,7 +771,7 @@ class Environment: will be appended. This means that if a space is required (such as with swift which wants `-Xlinker --version` and *not* `-Xlinker=--version`) you must pass as a list. - :extra_args: Any addtional arguments rquired (such as a source file) + :extra_args: Any additional arguments required (such as a source file) """ extra_args = typing.cast(typing.List[str], extra_args or []) if isinstance(prefix, str): @@ -1316,7 +1316,7 @@ class Environment: # figure out what linker rustc is using for a non-nightly compiler # (On nightly you can pass -Z print-link-args). So we're going to # hard code the linker based on the platform. - # Currenty gnu ld is used for everything except apple by + # Currently gnu ld is used for everything except apple by # default, and apple ld is used on mac. # TODO: find some better way to figure this out. if self.machines[for_machine].is_darwin(): @@ -1376,7 +1376,7 @@ class Environment: linker = MSVCDynamicLinker(for_machine, version=version) else: # Getting LDC on windows to give useful linker output when not - # doing real work is painfully hard. It ships with a verison of + # doing real work is painfully hard. It ships with a version of # lld-link, so just assume that we're going to use lld-link # with it. _, o, _ = Popen_safe(['lld-link.exe', '--version']) |