@@ -339,21 +339,21 @@ /** * @brief Creates a string by joining all objects of the array. * * @param separator The string with which the objects should be joined * @return A string containing all objects joined by the separator - * @throw OFInvalidArgumentException The provided separator is `nil` + * @throw OFInvalidArgumentException The provided separator was `nil` */ - (OFString *)componentsJoinedByString: (OFString *)separator; /** * @brief Creates a string by joining all objects of the array. * * @param separator The string with which the objects should be joined * @param options Options according to which the objects should be joined * @return A string containing all objects joined by the separator - * @throw OFInvalidArgumentException The provided separator is `nil` + * @throw OFInvalidArgumentException The provided separator was `nil` */ - (OFString *)componentsJoinedByString: (OFString *)separator options: (OFArrayJoinOptions)options; /** @@ -361,11 +361,11 @@ * and joining the strings returned by calling the selector. * * @param separator The string with which the objects should be joined * @param selector The selector to perform on the objects * @return A string containing all objects joined by the separator - * @throw OFInvalidArgumentException The provided separator is `nil` or calling + * @throw OFInvalidArgumentException The provided separator was `nil` or calling * the provided selector returned `nil` */ - (OFString *)componentsJoinedByString: (OFString *)separator usingSelector: (SEL)selector; @@ -375,11 +375,11 @@ * * @param separator The string with which the objects should be joined * @param selector The selector to perform on the objects * @param options Options according to which the objects should be joined * @return A string containing all objects joined by the separator - * @throw OFInvalidArgumentException The provided separator is `nil` or calling + * @throw OFInvalidArgumentException The provided separator was `nil` or calling * the provided selector returned `nil` */ - (OFString *)componentsJoinedByString: (OFString *)separator usingSelector: (SEL)selector options: (OFArrayJoinOptions)options;