editing sort type strings

This commit is contained in:
2020-06-08 12:35:00 -05:00
parent d3398c9b65
commit cb3dca5d62
7 changed files with 9 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ package Sorting;
public class SelectionSorter extends Sorter {
//a class to sort an array of numbers using selection sort
public SelectionSorter(String filename){
super("selection", filename);
super("selection sort", filename);
}
void sort(){