diff mbox series

[bug#44899,v2,1/4] gremlin: Fix typo in docstring.

Message ID 20201128102409.3157-2-ludo@gnu.org
State Accepted
Headers show
Series Using 'ld.so.cache' to speed up application startup | expand

Checks

Context Check Description
cbaines/applying patch fail View Laminar job
cbaines/issue success View issue

Commit Message

Ludovic Courtès Nov. 28, 2020, 10:24 a.m. UTC
* guix/build/gremlin.scm (file-runpath): Fix typo.
---
 guix/build/gremlin.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/guix/build/gremlin.scm b/guix/build/gremlin.scm
index 6857e47b99..44604827a9 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))