Skip to content

Commit

Permalink
Fix validation
Browse files Browse the repository at this point in the history
  • Loading branch information
palemieux committed Jun 7, 2024
1 parent b3e05e9 commit aa29965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/validate.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ class NormativeReferencesMatcher {
if (e.id !== "sec-normative-references")
return false;

validateReferences(e, "Normative references", logger);
validateReferences(e, logger);

return true;
}
Expand Down Expand Up @@ -812,7 +812,7 @@ class BibliographyMatcher {
if (e.id !== "sec-bibliography")
return false;

validateReferences(e, "Bibliography references", logger);
validateReferences(e, logger);

return true;
}
Expand Down

0 comments on commit aa29965

Please sign in to comment.