From c6b2cf583d950786b5cb187c8a196e26842844fb Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Mon, 14 Jul 2025 15:37:37 +1000 Subject: [PATCH] Fix code comment --- math.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.go b/math.go index daf62b42..0aefb4f7 100644 --- a/math.go +++ b/math.go @@ -6,6 +6,6 @@ import ( func intCeilDiv[T constraints.Unsigned](a, b T) T { // This still sux for negative numbers due to truncating division. But I don't know that we need - // or ceil division makes sense for negative numbers. + // or that ceil division makes sense for negative numbers. return (a + b - 1) / b } -- 2.51.0