docs: capitalize URL

This commit is contained in:
Matt Sturgeon 2024-06-13 05:46:16 +01:00
parent 5c9b98e64d
commit f8787bd23b
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -77,7 +77,7 @@ let
if info ? file && info ? description && info ? url then
"# ${lib.last path}\n\n"
+ (lib.optionalString (info.description != null) "${info.description}\n\n")
+ (lib.optionalString (info.url != null) "**Url:** [${info.url}](${info.url})\n\n")
+ (lib.optionalString (info.url != null) "**URL:** [${info.url}](${info.url})\n\n")
+ (lib.optionalString (
maintainers != [ ]
) "**Maintainers:** ${lib.concatStringsSep ", " maintainersNames}\n\n")