From 3cce74a8119121490cb90119e3e51a483adc07b5 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:34:44 -0500 Subject: [PATCH] spelling: elements Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- 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 e2ae2fa47..1c6f724f4 100644 --- a/python/src/array.cpp +++ b/python/src/array.cpp @@ -507,7 +507,7 @@ void init_array(py::module_& m) { array_class .def_property_readonly( - "size", &array::size, R"pbdoc(Number of elments in the array.)pbdoc") + "size", &array::size, R"pbdoc(Number of elements in the array.)pbdoc") .def_property_readonly( "ndim", &array::ndim, R"pbdoc(The array's dimension.)pbdoc") .def_property_readonly(