Vagrant Cascadian <vagr...@debian.org> skribis: > --- a/guix/lint.scm > +++ b/guix/lint.scm > @@ -313,7 +313,8 @@ (define (tests-explicitly-enabled?) > '())) > > (define (properly-starts-sentence? s) > - (string-match "^[(\"'`[:upper:][:digit:]]" s)) > + (string-match "^[(\"'`[:upper:][:digit:]]" > + (string-replace-substring s "@code{" "")))
An identifier in @code or file name in @file may legitimately start with a lower-case letter so I don’t think we should try to prevent that. However, maybe we could change the regexp above to something that accepts @ or some other non-letter character at the start? Ludo’.