check-meta: Fix typos in comment and error message

This commit is contained in:
a-kenji
2025-08-08 11:07:11 +02:00
parent ac88b73a8b
commit 4113779dd9
+3 -3
View File
@@ -119,7 +119,7 @@ let
isMarkedInsecure = attrs: (attrs.meta.knownVulnerabilities or [ ]) != [ ];
# Alow granular checks to allow only some unfree packages
# Allow granular checks to allow only some unfree packages
# Example:
# {pkgs, ...}:
# {
@@ -280,7 +280,7 @@ let
however ${getNameWithVersion attrs} only has the outputs: ${builtins.concatStringsSep ", " actualOutputs}
and is missing the following ouputs:
and is missing the following outputs:
${concatStrings (builtins.map (output: " - ${output}\n") missingOutputs)}
'';
@@ -629,7 +629,7 @@ let
else if valid == "warn" then
(handleEvalWarning { inherit meta attrs; } { inherit (validity) reason errormsg; })
else
throw "Unknown validitiy: '${valid}'"
throw "Unknown validity: '${valid}'"
);
};