Hi, Please see the commit message for more details.
All the best. Mario -- https://parenteses.org/mario
>From 85a11ce04121462cfd0cdd562b324c02d54d0f55 Mon Sep 17 00:00:00 2001 From: Mario Domenech Goulart <[email protected]> Date: Sun, 30 Nov 2025 15:55:49 +0100 Subject: [PATCH] "Rename "module (chicken version)" to "Module (chicken version)" This fixes the following warning printed by "make dist": Warning: files missing: ("manual-html/Module (chicken version).html") Piggyback: * Drop ^M line endings (probably introduced by Windows) * Reword the description of the module in its documentation, as we decided that it would only ship a single procedure. --- ...cken version) => Module (chicken version)} | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) rename manual/{module (chicken version) => Module (chicken version)} (86%) diff --git a/manual/module (chicken version) b/manual/Module (chicken version) similarity index 86% rename from manual/module (chicken version) rename to manual/Module (chicken version) index 4c146229..7612dab4 100644 --- a/manual/module (chicken version) +++ b/manual/Module (chicken version) @@ -1,14 +1,15 @@ -[[tags: manual]] -[[toc:]] - -== Module (chicken version) - -This module contains procedures for version comparison operations. - -=== version>=? - -<procedure>(version>=? v1 v2)</procedure> - +[[tags: manual]] +[[toc:]] + +== Module (chicken version) + +This module provides the {{version>=?}} procedure for version +comparison. + +=== version>=? + +<procedure>(version>=? v1 v2)</procedure> + Return {{#t}} if {{v1}} is greater than or equal to {{v2}}, where both arguments are assumed to encode version numbers. The values can be of any type and will be converted to strings @@ -16,7 +17,7 @@ The values can be of any type and will be converted to strings separators like {{"."}}, {{"-"}}, etc. and compares sub-elements numerically, if possible. ---- -Previous: [[Module (chicken type)]] - -Next: [[Module srfi-4]] +--- +Previous: [[Module (chicken type)]] + +Next: [[Module srfi-4]] -- 2.47.3
