diff --git a/src/main/java/mattrixwv/ProjectEuler/Problems/Problem5.java b/src/main/java/mattrixwv/ProjectEuler/Problems/Problem5.java index a615f96..dda8279 100644 --- a/src/main/java/mattrixwv/ProjectEuler/Problems/Problem5.java +++ b/src/main/java/mattrixwv/ProjectEuler/Problems/Problem5.java @@ -45,7 +45,7 @@ public class Problem5 extends Problem{ break; } } - //If you didn't find the correct numbe then increment by 2 + //If you didn't find the correct number then increment by 2 if(!numFound){ currentNum += 2; }