@@ -187,10 +187,10 @@ default boolean contains(@NotNull Object object) {
187187 }
188188
189189 /**
190- * Returns <tt> true</tt> if this array contains all of the elements in the specified array.
190+ * Returns true if this array contains all of the elements in the specified array.
191191 *
192192 * @param array the array to be checked for containment in this array
193- * @return <tt> true</tt> if this array contains all of the elements in the specified array.
193+ * @return true if this array contains all of the elements in the specified array.
194194 */
195195 default boolean containsAll (@ NotNull Array <?> array ) {
196196
@@ -228,10 +228,10 @@ default boolean containsAll(@NotNull Collection<?> array) {
228228 }
229229
230230 /**
231- * Returns <tt> true</tt> if this array contains all of the elements in the specified array.
231+ * Returns true if this array contains all of the elements in the specified array.
232232 *
233233 * @param array the array to be checked for containment in this array
234- * @return <tt> true</tt> if this array contains all of the elements in the specified array.
234+ * @return true if this array contains all of the elements in the specified array.
235235 */
236236 default boolean containsAll (@ NotNull Object [] array ) {
237237
@@ -423,7 +423,7 @@ default int lastIndexOf(@NotNull Object object) {
423423 * this call returns, this array will contain no elements in common with the specified array.
424424 *
425425 * @param target array containing elements to be removed from this array.
426- * @return <tt> true</tt> if this array changed as a result of the call.
426+ * @return true if this array changed as a result of the call.
427427 */
428428 default boolean removeAll (@ NotNull Array <?> target ) {
429429
@@ -469,7 +469,7 @@ default boolean removeAll(@NotNull Collection<?> target) {
469469 * words, removes from this array all of its elements that are not contained in the specified array.
470470 *
471471 * @param target array containing elements to be retained in this array.
472- * @return <tt> true</tt> if this array changed as a result of the call.
472+ * @return true if this array changed as a result of the call.
473473 */
474474 default boolean retainAll (@ NotNull Array <?> target ) {
475475
0 commit comments