From 37b022968049b8c4f6a2ae1b0bfb9eb4548bf064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 7 Dec 2023 14:59:50 +0100 Subject: [PATCH] python: doc++ --- src/python/magnum/meshtools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/magnum/meshtools.cpp b/src/python/magnum/meshtools.cpp index fcf39c5..4c6dcbd 100644 --- a/src/python/magnum/meshtools.cpp +++ b/src/python/magnum/meshtools.cpp @@ -175,7 +175,7 @@ void meshtools(py::module_& m) { test */ return MeshTools::interleave(mesh, {}, flags); }, "Interleave mesh data", py::arg("mesh"), py::arg("flags") = MeshTools::InterleaveFlag::PreserveInterleavedAttributes) - .def("copy", static_cast(MeshTools::copy), "Make a owned copy of the mesh", py::arg("mesh")) + .def("copy", static_cast(MeshTools::copy), "Make an owned copy of the mesh", py::arg("mesh")) /** @todo check that the indices/vertices aren't impl-specific once it's possible to test */ .def("remove_duplicates", static_cast(MeshTools::removeDuplicates), "Remove mesh data duplicates", py::arg("mesh"))