From fe3c914d419172654becf2214be69f7c3c19590d Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:36:38 -0500 Subject: [PATCH] spelling: irregularly 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 044edf7fd..f6443bc7e 100644 --- a/tests/ops_tests.cpp +++ b/tests/ops_tests.cpp @@ -1750,7 +1750,7 @@ TEST_CASE("test scatter") { out = scatter_max(array(1), {}, array(2), std::vector{}); CHECK_EQ(out.item(), 2); - // Irregularaly strided updates test + // Irregularly strided updates test in = ones({3, 3}); updates = broadcast_to(array({0, 0, 0}), {1, 3, 3}); inds = array({0});