From 61c29a3d8e4ee419d6087f55b5997cf95b853950 Mon Sep 17 00:00:00 2001 From: Dobiasd Date: Mon, 15 Apr 2024 18:00:32 +0200 Subject: [PATCH] Add comment about integers being positive --- include/fplus/numeric.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fplus/numeric.hpp b/include/fplus/numeric.hpp index a46e665e..b08c0535 100644 --- a/include/fplus/numeric.hpp +++ b/include/fplus/numeric.hpp @@ -834,7 +834,7 @@ std::function divide_by(const X& x) } // API search type: div_pos_int_ceil : (a, a) -> a -// Integer division, but rounding up instead of down. +// Positive integer division, but rounding up instead of down. // div_pos_int_ceil(5, 3) == 2 template static auto div_pos_int_ceil(X numerator, X denominator) {