From 9cc332f568189fa7bc028e662de6a5e08e3a88a7 Mon Sep 17 00:00:00 2001 From: jason Date: Wed, 5 Jan 2022 00:00:03 -0800 Subject: [PATCH] grammar nit --- 81_Splat/java/src/Splat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/81_Splat/java/src/Splat.java b/81_Splat/java/src/Splat.java index 6b89dde2..4c0e2fdf 100644 --- a/81_Splat/java/src/Splat.java +++ b/81_Splat/java/src/Splat.java @@ -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)