[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: lint: Fix typo.
From: |
Arun Isaac |
Subject: |
01/03: gnu: lint: Fix typo. |
Date: |
Mon, 22 May 2017 19:07:20 -0400 (EDT) |
arunisaac pushed a commit to branch master
in repository guix.
commit ad25e9962eee6827bc25f996734cddb6a1742f2e
Author: Arun Isaac <address@hidden>
Date: Wed May 17 21:23:23 2017 +0530
gnu: lint: Fix typo.
* guix/scripts/lint.scm (check-source-file-name): Fix wrong return value in
docstring.
---
guix/scripts/lint.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm
index 6f30d37..46989e3 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)))