From 5820b9da60e6cfb9ea53b18603b5410df269c0b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 9 Feb 2023 13:28:54 +0100 Subject: [PATCH] python: doc++ --- src/python/magnum/trade.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/magnum/trade.cpp b/src/python/magnum/trade.cpp index ce6f31a..249f7b6 100644 --- a/src/python/magnum/trade.cpp +++ b/src/python/magnum/trade.cpp @@ -791,7 +791,7 @@ void trade(py::module_& m) { throw py::error_already_set{}; } return meshAttributeView(self, *found, self.mutableAttribute(*found)); - }, "Data for given named attribute", py::arg("name"), py::arg("id") = 0) + }, "Mutable data for given named attribute", py::arg("name"), py::arg("id") = 0) .def("mutable_attribute", [](Trade::MeshData& self, UnsignedInt id) { if(id >= self.attributeCount()) { PyErr_SetNone(PyExc_IndexError);