Skip to content

Commit

Permalink
fix: Eucledian -> Euclidian typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl authored and inducer committed Feb 16, 2025
1 parent 4ba5f98 commit 3c62b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymbolic/geometric_algebra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def is_orthogonal(self):
@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:
Expand Down

0 comments on commit 3c62b0e

Please sign in to comment.