@@ -172,15 +172,15 @@ * @return A new autoreleased OFString */ + (instancetype)stringWithString: (OFString*)string; /*! - * @brief Creates a new OFString from a unicode string with the specified + * @brief Creates a new OFString from a Unicode string with the specified * length. * - * @param characters An array of unicode characters - * @param length The length of the unicode character array + * @param characters An array of Unicode characters + * @param length The length of the Unicode character array * @return A new autoreleased OFString */ + (instancetype)stringWithCharacters: (const of_unichar_t*)characters length: (size_t)length; @@ -405,15 +405,15 @@ * @return An initialized OFString */ - initWithString: (OFString*)string; /*! - * @brief Initializes an already allocated OFString with a unicode string with + * @brief Initializes an already allocated OFString with a Unicode string with * the specified length. * - * @param characters An array of unicode characters - * @param length The length of the unicode character array + * @param characters An array of Unicode characters + * @param length The length of the Unicode character array * @return An initialized OFString */ - initWithCharacters: (const of_unichar_t*)characters length: (size_t)length;