From dc0661be5a4a3df4c5557abdf3692f024d28b3f9 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:35:08 -0500 Subject: [PATCH] spelling: equivalent Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- python/src/ops.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/ops.cpp b/python/src/ops.cpp index 3ea35d6da..db27a14a1 100644 --- a/python/src/ops.cpp +++ b/python/src/ops.cpp @@ -1263,7 +1263,7 @@ void init_ops(py::module_& m) { If the axis is not specified the array is treated as a flattened 1-D array prior to performing the take. - As an example, if the ``axis=1`` this is equialent to ``a[:, indices, ...]``. + As an example, if the ``axis=1`` this is equivalent to ``a[:, indices, ...]``. Args: a (array): Input array.