Index: src/OFIRI.h ================================================================== --- src/OFIRI.h +++ src/OFIRI.h @@ -26,11 +26,12 @@ @class OFString; /** * @class OFIRI OFIRI.h ObjFW/OFIRI.h * - * @brief A class for parsing IRIs as per RFC 3987 and accessing parts of it. + * @brief A class for parsing Internationalized Resource Identifiers as per + * RFC 3987 and accessing parts of it. */ @interface OFIRI: OFObject { OFString *_scheme; OFString *_Nullable _percentEncodedHost; Index: src/OFMutableIRI.h ================================================================== --- src/OFMutableIRI.h +++ src/OFMutableIRI.h @@ -18,12 +18,12 @@ OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableIRI OFMutableIRI.h ObjFW/OFMutableIRI.h * - * @brief A class for parsing IRIs as per RFC 3987 and accessing and modifying - * parts of it. + * @brief A class for parsing Internationalized Resource Identifiers as per + * RFC 3987 and accessing and modifying parts of it. */ @interface OFMutableIRI: OFIRI { OF_RESERVE_IVARS(OFMutableIRI, 4) }