[libcalamares] Repair misleading comment

The class used to be a `using Descriptor =` but that was changed without
updating the comment. Make it class documentation.
This commit is contained in:
Adriaan de Groot 2024-02-19 00:53:18 +01:00
parent 38d78404b1
commit 1444d9d73a

View File

@ -46,9 +46,12 @@ enum class Interface
const NamedEnumTable< Interface >& interfaceNames(); const NamedEnumTable< Interface >& interfaceNames();
/* While this isn't a useful *using* right now, the intention is /**
* to create a more strongly-typed Module Descriptor that carries * @brief Description of a module (obtained from module.desc)
* only the necessary information and no variants. *
* Provides access to the fields of a descriptor, use type() to
* determine which specialized fields make sense for a given
* descriptor (e.g. a Python module has no shared-library path).
*/ */
class Descriptor class Descriptor
{ {