From 2eb75e15f1f11eaf8b677b539dbcb3c19a79cc7d Mon Sep 17 00:00:00 2001 From: Varun Upadhyay Date: Sun, 20 Aug 2017 07:50:29 -0700 Subject: [PATCH] Update InsertionSort.java --- Sorts/InsertionSort.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/InsertionSort.java b/Sorts/InsertionSort.java index ee33a03f..c77b895f 100644 --- a/Sorts/InsertionSort.java +++ b/Sorts/InsertionSort.java @@ -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 **/