aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-11-26 05:55:40 +0000
committerJosh Soref <jsoref@users.noreply.github.com>2017-11-26 05:55:40 +0000
commit49f8d28ef5dad5714b9837e6bace31c454b751b0 (patch)
tree636568fe5f799c2bcf3ebbba776483a42b81efca /mesonbuild/compilers/compilers.py
parent9dd4f047af292af8f46558d52fb1bcee74207553 (diff)
downloadmeson-49f8d28ef5dad5714b9837e6bace31c454b751b0.zip
meson-49f8d28ef5dad5714b9837e6bace31c454b751b0.tar.gz
meson-49f8d28ef5dad5714b9837e6bace31c454b751b0.tar.bz2
spelling: overridden
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r--mesonbuild/compilers/compilers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 7f6a181..7087b3e 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -451,7 +451,7 @@ class CompilerArgs(list):
Returns whether the argument can be safely de-duped. This is dependent
on three things:
- a) Whether an argument can be 'overriden' by a later argument. For
+ a) Whether an argument can be 'overridden' by a later argument. For
example, -DFOO defines FOO and -UFOO undefines FOO. In this case, we
can safely remove the previous occurrence and add a new one. The same
is true for include paths and library paths with -I and -L. For
@@ -605,7 +605,7 @@ class Compiler:
self.exelist = exelist
else:
raise TypeError('Unknown argument to Compiler')
- # In case it's been overriden by a child class already
+ # In case it's been overridden by a child class already
if not hasattr(self, 'file_suffixes'):
self.file_suffixes = lang_suffixes[self.language]
if not hasattr(self, 'can_compile_suffixes'):