aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-07-24 16:29:09 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-07-28 19:51:58 +0200
commit7ef51abfc565b147273097201f8eb286b1688736 (patch)
tree5769521f6b72d0c0bc6f13a7857bf521131a8c10
parent1123f4f311e1ac89b341dea2cb5922f29dc502e3 (diff)
downloadmeson-7ef51abfc565b147273097201f8eb286b1688736.zip
meson-7ef51abfc565b147273097201f8eb286b1688736.tar.gz
meson-7ef51abfc565b147273097201f8eb286b1688736.tar.bz2
Fix typo
-rw-r--r--mesonbuild/interpreterbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreterbase.py b/mesonbuild/interpreterbase.py
index 9f35601..822167c 100644
--- a/mesonbuild/interpreterbase.py
+++ b/mesonbuild/interpreterbase.py
@@ -330,7 +330,7 @@ class FeatureDeprecated(FeatureCheckBase):
@staticmethod
def check_version(target_version: str, feature_version: str) -> bool:
- # For deprecatoin checks we need to return the inverse of FeatureNew checks
+ # For deprecation checks we need to return the inverse of FeatureNew checks
return not mesonlib.version_compare_condition_with_min(target_version, feature_version)
@staticmethod