Fix typo in doc (#3628)

This commit is contained in:
Nimrod 2022-01-19 15:22:42 +08:00 committed by GitHub
parent 3a1eddab54
commit 9ec1128c7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,7 @@ targeted arguments can be passed through the :class:`cpp_function` constructor:
.. code-block:: cpp
class_<MyClass>(m, "MyClass")
.def_property("data"
.def_property("data",
py::cpp_function(&MyClass::getData, py::return_value_policy::copy),
py::cpp_function(&MyClass::setData)
);