aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-03-15 00:19:27 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-04-14 18:37:04 -0400
commitea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8 (patch)
treeecbe84cffb137db19fbddb03a5bce73069dd537f /mesonbuild/interpreter
parenteb2551c90e6710e5216bb2b9d31a01546cf53cb4 (diff)
downloadmeson-ea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8.zip
meson-ea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8.tar.gz
meson-ea8f4bb4adf961366a30cc1fc2ab6ea65b0b3ee8.tar.bz2
typo
Diffstat (limited to 'mesonbuild/interpreter')
-rw-r--r--mesonbuild/interpreter/interpreterobjects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreterobjects.py b/mesonbuild/interpreter/interpreterobjects.py
index 6cc636b..a07d548 100644
--- a/mesonbuild/interpreter/interpreterobjects.py
+++ b/mesonbuild/interpreter/interpreterobjects.py
@@ -87,7 +87,7 @@ class FeatureOptionHolder(ObjectHolder[coredata.UserFeatureOption]):
def __init__(self, option: coredata.UserFeatureOption, interpreter: 'Interpreter'):
super().__init__(option, interpreter)
if option and option.is_auto():
- # TODO: we need to case here because options is not a TypedDict
+ # TODO: we need to cast here because options is not a TypedDict
self.held_object = T.cast('coredata.UserFeatureOption', self.env.coredata.options[OptionKey('auto_features')])
self.held_object.name = option.name
self.methods.update({'enabled': self.enabled_method,