diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-06 00:21:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-06 00:22:05 +0100 |
commit | 012bf5c4c03e30633f137960bd0677e204c638a7 (patch) | |
tree | b24ce2afc49310f8d5a8971d068b5f8c2d7d6ac5 | |
parent | e506b5e95d63296d490e31d1fd1d0d7502126e04 (diff) | |
download | gnu-guix-012bf5c4c03e30633f137960bd0677e204c638a7.tar gnu-guix-012bf5c4c03e30633f137960bd0677e204c638a7.tar.gz |
lint: Rename checker to 'github-url'.
* guix/scripts/lint.scm (%checkers): Rename 'github-uri' to 'github-url'
to match the documentation.
-rw-r--r-- | guix/scripts/lint.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index 2c1c7ec669..040480c1ac 100644 --- a/guix/scripts/lint.scm +++ b/guix/scripts/lint.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Cyril Roelandt <tipecaml@gmail.com> ;;; Copyright © 2014, 2015 Eric Bavier <bavier@member.fsf.org> -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015, 2016 Mathieu Lirzin <mthl@gnu.org> ;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> @@ -1108,8 +1108,8 @@ or a list thereof") (description "Suggest 'mirror://' URLs") (check check-mirror-url)) (lint-checker - (name 'github-uri) - (description "Suggest GitHub URIs") + (name 'github-url) + (description "Suggest GitHub URLs") (check check-github-url)) (lint-checker (name 'source-file-name) |