Update InsertionSort.java

This commit is contained in:
Varun Upadhyay 2017-08-20 07:50:29 -07:00 committed by GitHub
parent 2b02d48377
commit 2eb75e15f1

View File

@ -9,7 +9,7 @@ class InsertionSort {
/**
* This method implements the Generic Insertion Sort
*
* @param array The array to make the binary search
* @param array The array to be sorted
* @param last The count of total number of elements in array
* Sorts the array in increasing order
**/