grammar nit

This commit is contained in:
jason
2022-01-05 00:00:03 -08:00
parent 5229754851
commit 9cc332f568

View File

@@ -94,7 +94,7 @@ public class Splat {
return Math.sqrt(2 * initial.getAltitude() / A);
}
// Returns the number of jumps that this jump was better than
// Returns the number of jumps for which this jump was better
private int countWorseHistoricalJumps(JumpResult jump) {
return (int) pastSuccessfulJumpDistances.stream()
.filter(distance -> jump.getDistance() < distance)