Fixed a few more typos

This commit is contained in:
2020-07-09 02:15:04 -04:00
parent 814f02e54d
commit 139540e4f0

View File

@@ -144,7 +144,7 @@ public class Benchmark{
totalTime /= timesToRun; totalTime /= timesToRun;
String timeResults = Stopwatch.getStr(totalTime); String timeResults = Stopwatch.getStr(totalTime);
//Print the results //Print the results
System.out.println("\n\n" + problem.getDescription()); System.out.println("\n\n" + problem.getResult());
System.out.println("It took an average of " + timeResults + " to run this problem through " + timesToRun + " iterations\n\n"); System.out.println("It took an average of " + timeResults + " to run this problem through " + timesToRun + " iterations\n\n");
} }
} }