On 2021-04-22, Maxime Devos wrote: > + (define (check-pluralized-this-package description) > + "Check that DESCRIPTION does not contain This packages" > > The sentence structure would be clearer if you used quotes here, > something like "Check that DESCRIPTION does not contain ‘This packages’". Any compelling reason to use ‘This packages’ vs. 'This packages' ? It seems other quotes in guix/lint.scm use '' also, and I'm not apparently skilled enough with a keyboard to generate ‘’-style quotes... :) > + (if (string-match "This packages" description) > + (list > + (make-warning package > + (G_ "description contains This Packages but should just be This package"))) > > There are no package descriptions containing "This Packages". > Did you mean "This packages"? Nice catch, thanks! >> +(test-equal "description: pluralized this package" > Quotes: "description: pluralized ‘this package’". Noted. >> + "description contains This Packages but should just be This package" > Capitalisation error: This Packages --> This packages > Also, quotes: "description contains ‘This packages’ but should just be ‘This package’". Again, nice catch! Updated the commit message and incorporated the above suggestions into the updated attached patch. live well, vagrant