From 96af9a7d63eee7fa978d24ac941193ff9136ab6b Mon Sep 17 00:00:00 2001 From: Varun Upadhyay Date: Sun, 20 Aug 2017 07:51:16 -0700 Subject: [PATCH] Update BubbleSort.java Changed the method description --- Sorts/BubbleSort.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/BubbleSort.java b/Sorts/BubbleSort.java index 648501077..93364369a 100644 --- a/Sorts/BubbleSort.java +++ b/Sorts/BubbleSort.java @@ -9,7 +9,7 @@ class BubbleSort /** * This method implements the Generic Bubble 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 **/