Skip to content

Commit

Permalink
Add missing slash accidentally left out
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralf W. Grosse-Kunstleve committed Feb 2, 2024
1 parent 13de380 commit 0d29c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pybind11/attr.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ struct metaclass {
/// Example usage: py::metaclass(PyType_Type)
/// PyType_Type is recommended if compatibility with abc.ABCMeta is required.
/// The only potential downside is that static properties behave differently
// (see pybind/pybind11#679 for background).
/// (see pybind/pybind11#679 for background).
explicit metaclass(PyTypeObject &type_obj) : value(reinterpret_cast<PyObject *>(&type_obj)) {}
};

Expand Down

0 comments on commit 0d29c62

Please sign in to comment.