[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gremlin: Fix typo in docstring.
From: |
guix-commits |
Subject: |
01/04: gremlin: Fix typo in docstring. |
Date: |
Tue, 1 Dec 2020 15:43:29 -0500 (EST) |
civodul pushed a commit to branch core-updates
in repository guix.
commit fad97a01dfce06d686269a4b8990376c68ed1ae6
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Nov 27 08:55:20 2020 +0100
gremlin: Fix typo in docstring.
* guix/build/gremlin.scm (file-runpath): Fix typo.
---
guix/build/gremlin.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/build/gremlin.scm b/guix/build/gremlin.scm
index 6857e47..4460482 100644
--- a/guix/build/gremlin.scm
+++ b/guix/build/gremlin.scm
@@ -250,7 +250,7 @@ info."
(elf-dynamic-info (parse-elf (get-bytevector-all port))))))
(define (file-runpath file)
- "Return the DT_RUNPATH dynamic entry of FILE as a list of string, or #f if
+ "Return the DT_RUNPATH dynamic entry of FILE as a list of strings, or #f if
FILE lacks dynamic info."
(and=> (file-dynamic-info file) elf-dynamic-info-runpath))