diff --git a/epymorph/engine/context.py b/epymorph/engine/context.py index c73867f2..1d48e41b 100644 --- a/epymorph/engine/context.py +++ b/epymorph/engine/context.py @@ -104,7 +104,7 @@ def _create_attribute_getter(attr: AttributeDef) -> AttributeGetter: data_raw = self._get_attribute_value(attr) data = attr.shape.adapt(self.dim, data_raw, True) if data is None: - msg = f"Attribute '{attr.name}' could not be adpated to the required shape." + msg = f"Attribute '{attr.name}' could not be adapted to the required shape." raise AttributeException(msg) return attr.shape.accessor(data)