From 157c883be4bb0a022b2397c59659dc1626794ad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 7 Mar 2023 19:43:09 +0100 Subject: [PATCH] python: fix wrongly copypasted comment. --- src/python/corrade/pluginmanager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/python/corrade/pluginmanager.h b/src/python/corrade/pluginmanager.h index aa1cff6..22bf224 100644 --- a/src/python/corrade/pluginmanager.h +++ b/src/python/corrade/pluginmanager.h @@ -35,9 +35,9 @@ namespace Corrade { namespace PluginManager { -/* Stores additional stuff needed for proper refcounting of array views. Due - to obvious reasons we can't subclass plugins so this is the only possible - way. */ +/* Stores additional stuff needed for proper refcounting of plugin instances. + Due to obvious reasons we can't subclass plugins so this is the only + possible way. */ template struct PyPluginHolder: std::unique_ptr { explicit PyPluginHolder(T*) { /* Pybind needs this signature, but it should never be called */