@@ -197,21 +197,21 @@ * * @brief The protocol which all root classes implement. */ @protocol OFObject /*! - * The class of the object. + * @brief The class of the object. */ @property (readonly, nonatomic) Class class; /*! - * The superclass of the object. + * @brief The superclass of the object. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) Class superclass; /*! - * A 32 bit hash for the object. + * @brief A 32 bit hash for the object. * * Classes containing data (like strings, arrays, lists etc.) should reimplement * this! * * @warning If you reimplement this, you also need to reimplement @ref isEqual: @@ -219,21 +219,21 @@ * method! */ @property (readonly, nonatomic) uint32_t hash; /*! - * The retain count. + * @brief The retain count. */ @property (readonly, nonatomic) unsigned int retainCount; /*! - * Whether the object is a proxy object. + * @brief Whether the object is a proxy object. */ @property (readonly, nonatomic) bool isProxy; /*! - * Whether the object allows weak references. + * @brief Whether the object allows weak references. */ @property (readonly, nonatomic) bool allowsWeakReference; /*! * @brief Returns a boolean whether the object of the specified kind. @@ -422,16 +422,16 @@ @property (class, readonly, nullable, nonatomic) Class superclass; @property (class, readonly, nonatomic) OFString *description; #endif /*! - * The name of the object's class. + * @brief The name of the object's class. */ @property (readonly, nonatomic) OFString *className; /*! - * A description for the object. + * @brief A description for the object. * * This is used when the object is used in a format string and for debugging * purposes. */ @property (readonly, nonatomic) OFString *description;