Skip to content

Commit 0d29c62

Browse files
committed
Add missing slash accidentally left out
1 parent 13de380 commit 0d29c62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/pybind11/attr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ struct metaclass {
9595
/// Example usage: py::metaclass(PyType_Type)
9696
/// PyType_Type is recommended if compatibility with abc.ABCMeta is required.
9797
/// The only potential downside is that static properties behave differently
98-
// (see pybind/pybind11#679 for background).
98+
/// (see pybind/pybind11#679 for background).
9999
explicit metaclass(PyTypeObject &type_obj) : value(reinterpret_cast<PyObject *>(&type_obj)) {}
100100
};
101101

0 commit comments

Comments
 (0)