Fix typos.
[alexxy/gromacs.git] / python_packaging / src / external / pybind / include / pybind11 / detail / common.h
index 6da54706084d7743536bc541643f61539d0f8eaa..579e2a5fa3e6ed9d3c198666544bfb7a4acc72e2 100644 (file)
@@ -341,7 +341,7 @@ enum class return_value_policy : uint8_t {
         object without taking ownership similar to the above
         return_value_policy::reference policy. In contrast to that policy, the
         function or property’s implicit this argument (called the parent) is
-        considered to be the the owner of the return value (the child).
+        considered to be the owner of the return value (the child).
         pybind11 then couples the lifetime of the parent to the child via a
         reference relationship that ensures that the parent cannot be garbage
         collected while Python is still using the child. More advanced