Index: src/OFMutableURL.h ================================================================== --- src/OFMutableURL.h +++ src/OFMutableURL.h @@ -129,12 +129,12 @@ * * For example, a query like `key1=value1&key2=value2` would correspond to the * following dictionary: * * @{ - * @"key1": "value1", - * @"key2": "value2" + * @"key1": @"value1", + * @"key2": @"value2" * } */ @property OF_NULLABLE_PROPERTY (readwrite, copy, nonatomic) OFDictionary OF_GENERIC(OFString *, OFString *) *queryDictionary; @@ -175,11 +175,11 @@ */ - (void)appendPathComponent: (OFString *)component isDirectory: (bool)isDirectory; /** - * @brief Resolves relative sub paths. + * @brief Resolves relative subpaths. */ - (void)standardizePath; /** * @brief Converts the mutable URL to an immutable URL. Index: src/OFURL.h ================================================================== --- src/OFURL.h +++ src/OFURL.h @@ -131,12 +131,12 @@ * * For example, a query like `key1=value1&key2=value2` would correspond to the * following dictionary: * * @{ - * @"key1": "value1", - * @"key2": "value2" + * @"key1": @"value1", + * @"key2": @"value2" * } */ @property OF_NULLABLE_PROPERTY (readonly, copy, nonatomic) OFDictionary OF_GENERIC(OFString *, OFString *) *queryDictionary; @@ -155,11 +155,11 @@ * @brief The URL as a string. */ @property (readonly, nonatomic) OFString *string; /** - * @brief The URL with relative sub paths resolved. + * @brief The URL with relative subpaths resolved. */ @property (readonly, nonatomic) OFURL *URLByStandardizingPath; #ifdef OF_HAVE_FILES /**