From 29081204d1f6e4ca662141879eda12e6c1c54a45 Mon Sep 17 00:00:00 2001 From: davidkoski <46639364+davidkoski@users.noreply.github.com> Date: Fri, 12 Jan 2024 11:06:16 -0800 Subject: [PATCH] array.swapaxes should point to swapaxes free function (#441) --- python/src/array.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/array.cpp b/python/src/array.cpp index 7a30612f0..e9575af95 100644 --- a/python/src/array.cpp +++ b/python/src/array.cpp @@ -1147,7 +1147,7 @@ void init_array(py::module_& m) { "axis2"_a, py::kw_only(), "stream"_a = none, - "See :func:`moveaxis`.") + "See :func:`swapaxes`.") .def( "transpose", [](const array& a, py::args axes, StreamOrDevice s) {