diff --git a/pymbolic/geometric_algebra/__init__.py b/pymbolic/geometric_algebra/__init__.py
index a2adfa62352e759b5a2fcf7dfabf8aeeb693cdcf..99538c2961f4429a93746891186ce3b57d6b4d49 100644
--- a/pymbolic/geometric_algebra/__init__.py
+++ b/pymbolic/geometric_algebra/__init__.py
@@ -267,7 +267,7 @@ class Space:
     @property
     @memoize_method
     def is_euclidean(self) -> bool:
-        """*True* if the metric matrix corresponds to the Eucledian metric."""
+        """*True* if the metric matrix corresponds to the Euclidian metric."""
         return (self.metric_matrix == np.eye(self.metric_matrix.shape[0])).all()
 
     def blade_bits_to_str(self, bits: int, outer_operator: str = "^") -> str: