From 272f6952ba187aa0b11fea63cd32f4c90603c1f1 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:29:05 -0500 Subject: [PATCH] spelling: combinations Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- python/tests/test_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_ops.py b/python/tests/test_ops.py index 89edfdefa..782249b56 100644 --- a/python/tests/test_ops.py +++ b/python/tests/test_ops.py @@ -88,7 +88,7 @@ class TestOps(mlx_tests.MLXTestCase): self.assertEqual(a.dtype, mx.float32) self.assertEqual(a.item(), 3.0) - # Check comibinations with mlx arrays + # Check combinations with mlx arrays a = mx.add(mx.array(True), False) self.assertEqual(a.dtype, mx.bool_) self.assertEqual(a.item(), True)