From af4701dab7c1bbea0194e979622de9fdcd05d335 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 8 Dec 2023 21:20:21 +0000 Subject: [PATCH] typo --- day-8/two.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day-8/two.go b/day-8/two.go index 2c33b7f..b2829bf 100644 --- a/day-8/two.go +++ b/day-8/two.go @@ -14,7 +14,7 @@ func GCF(a, b int) int { return a } -// LCM returns least common multiple of a set a numbers +// LCM returns least common multiple of a set of numbers func LCM(a, b int, integers ...int) int { result := a * b / GCF(a, b)