From 69cec519e87f94df6950a29413f1fb61ff64e28b Mon Sep 17 00:00:00 2001 From: Joren Dumoulin Date: Tue, 7 Jan 2025 17:10:36 +0100 Subject: [PATCH] dialects: (builtin) fix spelling (#3716) --- xdsl/dialects/builtin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xdsl/dialects/builtin.py b/xdsl/dialects/builtin.py index 581761344a..7741c655f8 100644 --- a/xdsl/dialects/builtin.py +++ b/xdsl/dialects/builtin.py @@ -2182,7 +2182,7 @@ def get_attrs(self) -> Sequence[AnyIntegerAttr] | Sequence[AnyFloatAttr]: def is_splat(self) -> bool: """ - Return whethere or not this dense attribute is defined entirely + Return whether or not this dense attribute is defined entirely by a single value (splat). """ return self.data.data.count(self.data.data[0]) == len(self.data.data)