diff options
author | Leo Famulari <leo@famulari.name> | 2021-02-23 13:41:52 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-02-23 14:12:34 -0500 |
commit | 56733080c4cca7fd0853f40efeb881d0207fd017 (patch) | |
tree | 92572c14ea1ca4409cd5dd0f42ffd698b77a9edc /guix | |
parent | 84e082e31706411e7f9c3189a83f8ed0b4016fe7 (diff) |
packages: Improve the docstring of PACKAGE/INHERIT.
* guix/packages.scm (package/inherit): Try to clarify the docstring.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 7f45417ea2..eae8fcbb6e 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -425,7 +425,7 @@ name of its URI." (define-syntax-rule (package/inherit p overrides ...) "Like (package (inherit P) OVERRIDES ...), except that the same -transformation is done to the package replacement, if any. P must be a bare +transformation is done to the package P's replacement, if any. P must be a bare identifier, and will be bound to either P or its replacement when evaluating OVERRIDES." (let loop ((p p)) |