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