@@ -163,27 +163,31 @@ * @param selector The selector to call on the target. The signature must be * the following: * @parblock * * void (OFDNSResolver *resolver, OFString *domainName, - * OFArray<__kindof OFDNSResourceRecord *> + * OFArray *> * *_Nullable answerRecords, - * OFArray<__kindof OFDNSResourceRecord *> + * OFArray *> * *_Nullable authorityRecords, - * OFArray<__kindof OFDNSResourceRecord *> + * OFArray *> * *_Nullable additionalRecords, * id _Nullable context, id _Nullable exception) * * `resolver` is the acting resolver.@n * `domainName` is the fully qualified domain name used to * resolve the host.@n - * `answerRecords` are the answer records from the name server. + * `answerRecords` are the answer records from the name server, + * grouped by domain name. * @n * `authorityRecords` are the authority records from the name - * server.@n + * server, grouped by domain name.@n * `additionalRecords` are additional records sent by the name - * server.@n + * server, grouped by domain name.@n * `context` is the context object originally passed.@n * `exception` is an exception that happened during resolving, * otherwise nil. * @endparblock * @param context A context object to pass along to the target @@ -203,27 +207,31 @@ * @param selector The selector to call on the target. The signature must be * the following: * @parblock * * void (OFDNSResolver *resolver, OFString *domainName, - * OFArray<__kindof OFDNSResourceRecord *> + * OFArray *> * *_Nullable answerRecords, - * OFArray<__kindof OFDNSResourceRecord *> + * OFArray *> * *_Nullable authorityRecords, - * OFArray<__kindof OFDNSResourceRecord *> + * OFArray *> * *_Nullable additionalRecords, * id _Nullable context, id _Nullable exception) * * `resolver` is the acting resolver.@n * `domainName` is the fully qualified domain name used to * resolve the host.@n - * `answerRecords` are the answer records from the name server. + * `answerRecords` are the answer records from the name server, + * grouped by domain name. * @n * `authorityRecords` are the authority records from the name - * server.@n + * server, grouped by domain name.@n * `additionalRecords` are additional records sent by the name - * server.@n + * server, grouped by domain name.@n * `context` is the context object originally passed.@n * `exception` is an exception that happened during resolving, * otherwise nil. * @endparblock * @param context A context object to pass along to the target