@@ -20,11 +20,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFString; -/*! +/** * @class OFDNSQuery OFDNSQuery.h ObjFW/OFDNSQuery.h * * @brief A class representing a DNS query. */ @interface OFDNSQuery: OFObject @@ -33,26 +33,26 @@ of_dns_class_t _DNSClass; of_dns_record_type_t _recordType; OF_RESERVE_IVARS(OFDNSQuery, 4) } -/*! +/** * @brief The domain name of the query. */ @property (readonly, nonatomic) OFString *domainName; -/*! +/** * @brief The DNS class of the query. */ @property (readonly, nonatomic) of_dns_class_t DNSClass; -/*! +/** * @brief The record type of the query. */ @property (readonly, nonatomic) of_dns_record_type_t recordType; -/*! +/** * @brief Creates a new, autoreleased OFDNSQuery. * * @param domainName The domain name to query * @param DNSClass The DNS class of the query * @param recordType The record type of the query @@ -60,11 +60,11 @@ */ + (instancetype)queryWithDomainName: (OFString *)domainName DNSClass: (of_dns_class_t)DNSClass recordType: (of_dns_record_type_t)recordType; -/*! +/** * @brief Initializes an already allocated OFDNSQuery. * * @param domainName The domain name to query * @param DNSClass The DNS class of the query * @param recordType The record type of the query