From 0540c808c562df47abb43870bfb628bd024f11e6 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Mon, 15 Jun 2020 00:46:25 -0400 Subject: [PATCH] Fixed typo --- src/main/java/mattrixwv/ProjectEuler/Problems/Problem5.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }