From 3d34022fd92a8b6647055247dc83010085f6c817 Mon Sep 17 00:00:00 2001 From: Youssef Ali Date: Fri, 13 Oct 2017 22:24:36 +0200 Subject: [PATCH] Update CountingSortIntegers.java --- Sorts/CountingSortIntegers.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sorts/CountingSortIntegers.java b/Sorts/CountingSortIntegers.java index b6bb1fde..33b6e909 100644 --- a/Sorts/CountingSortIntegers.java +++ b/Sorts/CountingSortIntegers.java @@ -12,9 +12,9 @@ class CountingSortIntegers { * @param array The array to be sorted * @param last The count of total number of elements in array * Sorts the array in increasing order - * It sorted only integer arrays especially positive integers + * It sorts only integer arrays especially positive integers * It uses array elements as indexes in the frequency array - * Can accept only array elements within the range [0:10^8] + * It can accept only array elements within the range [0:10^8] **/ public static void CSI(int array[], int last) {