Archived
1
0
Fork 0

gremlin: Fix typo in docstring.

* guix/build/gremlin.scm (file-runpath): Fix typo.
This commit is contained in:
Ludovic Courtès 2020-11-27 08:55:20 +01:00
parent e76867e285
commit fad97a01df
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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))