@@ -75,22 +75,22 @@ OFString *_Nullable _lastLongOption, *_Nullable _argument; bool _done; } /*! - * The last parsed option. + * @brief The last parsed option. * * If @ref nextOption returned `?` or `:`, this returns the option which was * unknown or for which the argument was missing.@n * If this returns `-`, the last option is only available as a long option (see * lastLongOption). */ @property (readonly, nonatomic) of_unichar_t lastOption; /*! - * The long option for the last parsed option, or `nil` if the last parsed - * option was not passed as a long option by the user. + * @brief The long option for the last parsed option, or `nil` if the last + * parsed option was not passed as a long option by the user. * * In case @ref nextOption returned `?`, this contains the unknown long * option.@n * In case it returned `:`, this contains the long option which is missing an * argument.@n @@ -102,17 +102,17 @@ * it was actually specified as a long option by the user. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *lastLongOption; /*! - * The argument for the last parsed option, or `nil` if the last parsed option - * takes no argument. + * @brief The argument for the last parsed option, or `nil` if the last parsed + * option takes no argument. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *argument; /*! - * The arguments following the last option. + * @brief The arguments following the last option. */ @property (readonly, nonatomic) OFArray OF_GENERIC(OFString *) *remainingArguments; /*!