@@ -20,11 +20,11 @@ #include OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFDeleteWindowsRegistryKeyFailedException \ * OFDeleteWindowsRegistryKeyFailedException.h \ * ObjFW/OFDeleteWindowsRegistryKeyFailedException.h * * @brief An exception indicating that deleting a Windows registry key failed. @@ -34,26 +34,26 @@ OFWindowsRegistryKey *_registryKey; OFString *_subkeyPath; LSTATUS _status; } -/*! +/** * @brief The registry key on which deleting the subkey failed. */ @property (readonly, nonatomic) OFWindowsRegistryKey *registryKey; -/*! +/** * @brief The path of the subkey which could not be deleted. */ @property (readonly, nonatomic) OFString *subkeyPath; -/*! +/** * @brief The status returned by RegDeleteKeyEx(). */ @property (readonly, nonatomic) LSTATUS status; -/*! +/** * @brief Creates a new, autoreleased delete Windows registry key failed * exception. * * @param registryKey The registry key on which deleting the subkey failed * @param subkeyPath The path of the subkey which could not be deleted @@ -64,11 +64,11 @@ subkeyPath: (OFString *)subkeyPath status: (LSTATUS)status; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated delete Windows registry key failed * exception. * * @param registryKey The registry key on which deleting the subkey failed * @param subkeyPath The path of the subkey which could not be deleted