@@ -277,8 +277,7 @@ public static int binarySearch(Object[] array, Object object) {
277277 /// Performs a binary search for the specified element in the specified
278278 /// sorted array using the Comparator to compare elements.
279279 ///
280- /// @param
281- /// type of object
280+ /// Type parameter `T`: type of object
282281 ///
283282 /// #### Parameters
284283 ///
@@ -726,8 +725,7 @@ public static int binarySearch(Object[] array, int startIndex,
726725 /// Performs a binary search for the specified element in a part of the
727726 /// specified sorted array using the Comparator to compare elements.
728727 ///
729- /// @param
730- /// type of object
728+ /// Type parameter `T`: type of object
731729 ///
732730 /// #### Parameters
733731 ///
@@ -3865,7 +3863,7 @@ private static boolean deepToStringImplContains(Object[] origArrays,
38653863
38663864 /// Copies elements in original array to a new array, from index
38673865 /// start(inclusive) to end(exclusive). The first element (if any) in the new
3868- /// array is original[from], and other elements in the new array are in the
3866+ /// array is original[` from` ], and other elements in the new array are in the
38693867 /// original order. The padding value whose index is bigger than or equal to
38703868 /// original.length - start is false.
38713869 ///
@@ -3908,7 +3906,7 @@ public static boolean[] copyOfRange(boolean[] original, int start, int end) {
39083906
39093907 /// Copies elements in original array to a new array, from index
39103908 /// start(inclusive) to end(exclusive). The first element (if any) in the new
3911- /// array is original[from], and other elements in the new array are in the
3909+ /// array is original[` from` ], and other elements in the new array are in the
39123910 /// original order. The padding value whose index is bigger than or equal to
39133911 /// original.length - start is (byte)0.
39143912 ///
@@ -3951,7 +3949,7 @@ public static byte[] copyOfRange(byte[] original, int start, int end) {
39513949
39523950 /// Copies elements in original array to a new array, from index
39533951 /// start(inclusive) to end(exclusive). The first element (if any) in the new
3954- /// array is original[from], and other elements in the new array are in the
3952+ /// array is original[` from` ], and other elements in the new array are in the
39553953 /// original order. The padding value whose index is bigger than or equal to
39563954 /// original.length - start is '\\u000'.
39573955 ///
@@ -3994,7 +3992,7 @@ public static char[] copyOfRange(char[] original, int start, int end) {
39943992
39953993 /// Copies elements in original array to a new array, from index
39963994 /// start(inclusive) to end(exclusive). The first element (if any) in the new
3997- /// array is original[from], and other elements in the new array are in the
3995+ /// array is original[` from` ], and other elements in the new array are in the
39983996 /// original order. The padding value whose index is bigger than or equal to
39993997 /// original.length - start is 0d.
40003998 ///
@@ -4037,7 +4035,7 @@ public static double[] copyOfRange(double[] original, int start, int end) {
40374035
40384036 /// Copies elements in original array to a new array, from index
40394037 /// start(inclusive) to end(exclusive). The first element (if any) in the new
4040- /// array is original[from], and other elements in the new array are in the
4038+ /// array is original[` from` ], and other elements in the new array are in the
40414039 /// original order. The padding value whose index is bigger than or equal to
40424040 /// original.length - start is 0f.
40434041 ///
@@ -4080,7 +4078,7 @@ public static float[] copyOfRange(float[] original, int start, int end) {
40804078
40814079 /// Copies elements in original array to a new array, from index
40824080 /// start(inclusive) to end(exclusive). The first element (if any) in the new
4083- /// array is original[from], and other elements in the new array are in the
4081+ /// array is original[` from` ], and other elements in the new array are in the
40844082 /// original order. The padding value whose index is bigger than or equal to
40854083 /// original.length - start is 0.
40864084 ///
@@ -4123,7 +4121,7 @@ public static int[] copyOfRange(int[] original, int start, int end) {
41234121
41244122 /// Copies elements in original array to a new array, from index
41254123 /// start(inclusive) to end(exclusive). The first element (if any) in the new
4126- /// array is original[from], and other elements in the new array are in the
4124+ /// array is original[` from` ], and other elements in the new array are in the
41274125 /// original order. The padding value whose index is bigger than or equal to
41284126 /// original.length - start is 0L.
41294127 ///
@@ -4166,7 +4164,7 @@ public static long[] copyOfRange(long[] original, int start, int end) {
41664164
41674165 /// Copies elements in original array to a new array, from index
41684166 /// start(inclusive) to end(exclusive). The first element (if any) in the new
4169- /// array is original[from], and other elements in the new array are in the
4167+ /// array is original[` from` ], and other elements in the new array are in the
41704168 /// original order. The padding value whose index is bigger than or equal to
41714169 /// original.length - start is (short)0.
41724170 ///
0 commit comments