diff --git a/sorting/BubbleSort.c b/sorting/BubbleSort.c index a92b4892..0b6a1879 100644 --- a/sorting/BubbleSort.c +++ b/sorting/BubbleSort.c @@ -1,4 +1,4 @@ -//sorting of linked list using bubble sort +//sorting of array list using bubble sort #include /*Displays the array, passed to this method*/ diff --git a/sorting/InsertionSort.c b/sorting/InsertionSort.c index 613e70b8..961ddebb 100644 --- a/sorting/InsertionSort.c +++ b/sorting/InsertionSort.c @@ -1,4 +1,4 @@ -//sorting of linked list using insertion sort +//sorting of array list using insertion sort #include /*Displays the array, passed to this method*/ diff --git a/sorting/SelectionSort.c b/sorting/SelectionSort.c index db269c69..cff71b4d 100644 --- a/sorting/SelectionSort.c +++ b/sorting/SelectionSort.c @@ -1,4 +1,4 @@ -//sorting of linked list using selection sort +//sorting of array list using selection sort #include /*Displays the array, passed to this method*/