summaryrefslogtreecommitdiff
path: root/guix/scripts/lint.scm
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2017-05-17 21:23:23 +0530
committerArun Isaac <arunisaac@systemreboot.net>2017-05-23 04:35:06 +0530
commitad25e9962eee6827bc25f996734cddb6a1742f2e (patch)
tree9f7b49e7857cb3ca9b93ec2808137788ace5fe41 /guix/scripts/lint.scm
parentb608765a2cd36772616d0401e08377e9730740cf (diff)
downloadpatches-ad25e9962eee6827bc25f996734cddb6a1742f2e.tar
patches-ad25e9962eee6827bc25f996734cddb6a1742f2e.tar.gz
gnu: lint: Fix typo.
* guix/scripts/lint.scm (check-source-file-name): Fix wrong return value in docstring.
Diffstat (limited to 'guix/scripts/lint.scm')
-rw-r--r--guix/scripts/lint.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm
index 6f30d371a2..46989e3a17 100644
--- a/guix/scripts/lint.scm
+++ b/guix/scripts/lint.scm
@@ -668,7 +668,7 @@ descriptions maintained upstream."
(define (check-source-file-name package)
"Emit a warning if PACKAGE's origin has no meaningful file name."
(define (origin-file-name-valid? origin)
- ;; Return #t if the source file name contains only a version or is #f;
+ ;; Return #f if the source file name contains only a version or is #f;
;; indicates that the origin needs a 'file-name' field.
(let ((file-name (origin-actual-file-name origin))
(version (package-version package)))