Index: src/OFFileManager.h ================================================================== --- src/OFFileManager.h +++ src/OFFileManager.h @@ -652,11 +652,11 @@ #endif /** * @brief Creates a symbolic link for an item. * - * The destination uRL must have a full path, which means it must include the + * The destination URI must have a full path, which means it must include the * name of the item. * * This method is not available for all URIs. * * @note On Windows, this requires at least Windows Vista and administrator Index: src/OFMutableURI.h ================================================================== --- src/OFMutableURI.h +++ src/OFMutableURI.h @@ -18,11 +18,12 @@ OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableURI OFMutableURI.h ObjFW/OFMutableURI.h * - * @brief A class for parsing URIs and accessing parts of it. + * @brief A class for parsing URIs as per RFC 3986 and accessing and modifying + * parts of it. */ @interface OFMutableURI: OFURI { OF_RESERVE_IVARS(OFMutableURI, 4) } Index: src/OFURI.h ================================================================== --- src/OFURI.h +++ src/OFURI.h @@ -26,11 +26,11 @@ @class OFString; /** * @class OFURI OFURI.h ObjFW/OFURI.h * - * @brief A class for parsing URIs and accessing parts of it. + * @brief A class for parsing URIs as per RFC 3986 and accessing parts of it. */ @interface OFURI: OFObject { OFString *_Nullable _percentEncodedScheme; OFString *_Nullable _percentEncodedHost;