gnu: lint: Fix typo.
* guix/scripts/lint.scm (check-source-file-name): Fix wrong return value in docstring.
This commit is contained in:
		
							parent
							
								
									b608765a2c
								
							
						
					
					
						commit
						ad25e9962e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -668,7 +668,7 @@ descriptions maintained upstream."
 | 
				
			||||||
(define (check-source-file-name package)
 | 
					(define (check-source-file-name package)
 | 
				
			||||||
  "Emit a warning if PACKAGE's origin has no meaningful file name."
 | 
					  "Emit a warning if PACKAGE's origin has no meaningful file name."
 | 
				
			||||||
  (define (origin-file-name-valid? origin)
 | 
					  (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.
 | 
					    ;; indicates that the origin needs a 'file-name' field.
 | 
				
			||||||
    (let ((file-name (origin-actual-file-name origin))
 | 
					    (let ((file-name (origin-actual-file-name origin))
 | 
				
			||||||
          (version (package-version package)))
 | 
					          (version (package-version package)))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue