diff options
author | jgart <jgart@dismail.de> | 2022-11-12 09:09:07 -0600 |
---|---|---|
committer | Guix Patches Tester <> | 2022-11-12 16:22:36 +0100 |
commit | 5254049531da0c0111ebada8d5e315aa58fd6685 (patch) | |
tree | 0e546031aa5ed6c4876ce0dddb6e378f7714e3f9 | |
parent | 63b7dbc7327ba7c86781f0ceeaccf1b832219f09 (diff) | |
download | guix-patches-5254049531da0c0111ebada8d5e315aa58fd6685.tar guix-patches-5254049531da0c0111ebada8d5e315aa58fd6685.tar.gz |
guix: lint: Improve message in linter warning.issue-59217
* guix/lint.scm (check-end-of-sentence-space): Improve message.
-rw-r--r-- | guix/lint.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/lint.scm b/guix/lint.scm index 8e3976171f..37a9539e2c 100644 --- a/guix/lint.scm +++ b/guix/lint.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz> ;;; Copyright © 2021, 2022 Maxime Devos <maximedevos@telenet.be> ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re> +;;; Copyright © 2022 jgart <jgart@dismail.de> ;;; ;;; This file is part of GNU Guix. ;;; @@ -409,7 +410,7 @@ trademark sign '~a' at ~d") (list (make-warning package (G_ "sentences in description should be followed ~ -by two spaces; possible infraction~p at ~{~a~^, ~}") +by two spaces due to issues wth Emacs; possible infraction~p at ~{~a~^, ~}") (list (length infractions) infractions) #:field 'description))))) |