From 306c72edf3e1936d456169571f77c032c8510807 Mon Sep 17 00:00:00 2001 From: Jeremy Prevost Date: Fri, 17 Nov 2023 08:40:52 -0500 Subject: [PATCH] fixup validate_issn docs --- app/models/standard_identifiers.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/models/standard_identifiers.rb b/app/models/standard_identifiers.rb index 59a6abb..fff668f 100644 --- a/app/models/standard_identifiers.rb +++ b/app/models/standard_identifiers.rb @@ -43,11 +43,10 @@ def strip_invalid_issns end def validate_issn(candidate) - # This model is only called when the regex for an ISSN has indicated an ISSN + # This method is only called when the regex for an ISSN has indicated an ISSN # of sufficient format is present - but the regex does not attempt to # validate that the check digit in the ISSN spec is correct. This method - # does that calculation, so we can avoid sending nonsense requests to - # CrossRef or the Primo API for facially-valid ISSNs that actually are not, + # does that calculation, so we do not returned falsely detected ISSNs, # like "2015-2019". # # The algorithm is defined at