diff options
Diffstat (limited to 'guix/lint.scm')
-rw-r--r-- | guix/lint.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/lint.scm b/guix/lint.scm index 2033aa36f1..fd46ea6eea 100644 --- a/guix/lint.scm +++ b/guix/lint.scm @@ -693,7 +693,7 @@ or \"bash-minimal\" is not in its inputs. 'wrap-script' is not supported." input-names))) (define (check-procedure-body body) (match body - ;; Explicitely setting an interpreter is acceptable. + ;; Explicitly setting an interpreter is acceptable. (('wrap-program _ '#:sh . _) '()) (('wrap-program _ . _) (list (report-wrap-program-error package 'wrap-program))) @@ -1520,7 +1520,7 @@ password, provided REF's URI is HTTP or HTTPS." (filter lint-warning? (map (cut try store <>) (package-supported-systems package)))) - ;; For backwards compatability, don't rely on store being set + ;; For backwards compatibility, don't rely on store being set (or (and=> store check-with-store) (with-store store (check-with-store store)))) @@ -2112,7 +2112,7 @@ them for PACKAGE." (check check-input-labels)) (lint-checker (name 'wrapper-inputs) - (description "Make sure 'wrap-program' can finds its interpreter.") + (description "Make sure 'wrap-program' can find its interpreter.") (check check-wrapper-inputs)) (lint-checker (name 'license) |