Fixed typo

Tags #fix
This commit is contained in:
Michael Rausch
2017-03-08 14:28:51 +13:00
parent 245fbc75c2
commit 27f9776de8
+1 -1
View File
@@ -115,7 +115,7 @@ public class Race {
for (int i = 0; i < numberOfBoats; i++) {
String velocityKnots = String.format("%1.2f", boats[i].getVelocity() * 1.943844492);
System.out.println(boats[i].getTeamName() + " Velocity: " + velocityKnots);
System.out.println(boats[i].getTeamName() + " Velocity: " + velocityKnots + " knots.");
}
}