We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc482d3 commit 072442cCopy full SHA for 072442c
1 file changed
Merge_Sort/Java/rrivera1849/MergeSort.java
@@ -7,10 +7,10 @@ public class MergeSort {
7
/*
8
* Inputs:
9
* array - An array containing a sequence of integers.
10
- * start / end - Used to describe which sub-array of the main array we want to sort.
+ * start / end - The range that you want to sort.
11
*
12
* Output:
13
- * Although the function is void the original array will be sorted from start to end.
+ * Although the function is void the original array will be sorted in the specified range.
14
*/
15
16
public static void mergeSort(int[] array, int start, int end){
0 commit comments