From 07782096d82076796811fc5d9322aa40d0ddd9df Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:38:00 -0500 Subject: [PATCH] spelling: negative Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- python/tests/test_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_array.py b/python/tests/test_array.py index b6471cdbd..9016f3ae4 100644 --- a/python/tests/test_array.py +++ b/python/tests/test_array.py @@ -952,7 +952,7 @@ class TestArray(mlx_tests.MLXTestCase): b_mx = a_mx[25:-50:-3] self.assertTrue(np.array_equal(b_np, b_mx)) - # Negatie slice and ascending bounds + # Negative slice and ascending bounds b_np = a_np[0:20:-3] b_mx = a_mx[0:20:-3] self.assertTrue(np.array_equal(b_np, b_mx))