From 27f640e7c9c3942e801202aea015dd91f59e7395 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 23:03:10 -0500 Subject: [PATCH] spelling: array Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/ops_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ops_tests.cpp b/tests/ops_tests.cpp index 2c6c8e8ef..1fa3035a2 100644 --- a/tests/ops_tests.cpp +++ b/tests/ops_tests.cpp @@ -1411,7 +1411,7 @@ TEST_CASE("test broadcast") { x.eval(); CHECK_EQ(x.strides(), std::vector{0, 0, 1}); - // Broadcast on transposed arrray works + // Broadcast on transposed array works x = array({0, 1, 2, 3, 4, 5}, {2, 3}); x = broadcast_to(transpose(x), {2, 3, 2}); CHECK_EQ(x.shape(), std::vector{2, 3, 2});