@@ -68,19 +68,22 @@ public static ReadOnlyArray<T> ToReadOnlyArray<T>([InstantHandle] this IEnumerab
6868 /// <param name="array">The <see cref="ReadOnlyArray{T}"/> instance.</param>
6969 /// <param name="value">The object to locate in array.</param>
7070 /// <returns>
71- /// The zero-based index of the first occurrence of <paramref name="value"/> in the <paramref name="array"/>, if found; otherwise, <c>-1</c>.
71+ /// The zero-based index of the first occurrence of <paramref name="value"/>
72+ /// in the <paramref name="array"/>, if found; otherwise, <c>-1</c>.
7273 /// </returns>
7374 public static int IndexOf < T > ( this ReadOnlyArray < T > array , T value ) =>
7475 Array . IndexOf ( array . Inner ! , value ) ;
7576
7677 /// <summary>
77- /// Searches for the specified object and returns the index of the last occurrence within the entire <see cref="ReadOnlyArray{T}"/>.
78+ /// Searches for the specified object and returns the index
79+ /// of the last occurrence within the entire <see cref="ReadOnlyArray{T}"/>.
7880 /// </summary>
7981 /// <typeparam name="T">The type of element in the array.</typeparam>
8082 /// <param name="array">The <see cref="ReadOnlyArray{T}"/> instance.</param>
8183 /// <param name="value">The object to locate in array.</param>
8284 /// <returns>
83- /// The zero-based index of the last occurrence of <paramref name="value"/> in the <paramref name="array"/>, if found; otherwise, <c>-1</c>.
85+ /// The zero-based index of the last occurrence of <paramref name="value"/>
86+ /// in the <paramref name="array"/>, if found; otherwise, <c>-1</c>.
8487 /// </returns>
8588 public static int LastIndexOf < T > ( this ReadOnlyArray < T > array , T value ) =>
8689 Array . LastIndexOf ( array . Inner ! , value ) ;
0 commit comments