diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-12-12 22:18:37 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-12-13 18:04:04 +0100 |
commit | 6212146f887327b0ef017702982194f2d8180178 (patch) | |
tree | 16cc5bd323b74f372bc5a05a8a22261b5250a014 /guix/import | |
parent | 19ba75dc02c4ff072f96296543a00737bcf24bf9 (diff) |
import: utils: Update docstring of 'recursive-import'.
This is a followup to 70a8e13277d4a44b89dd9ee2290b98105f0235f1.
* guix/import/utils.scm (recursive-import): Update docstring.
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/utils.scm b/guix/import/utils.scm index 47fc8276a9..d17d400ddf 100644 --- a/guix/import/utils.scm +++ b/guix/import/utils.scm @@ -402,7 +402,7 @@ obtain a node's uniquely identifying \"key\"." (define* (recursive-import package-name repo #:key repo->guix-package guix-name #:allow-other-keys) - "Return a stream of package expressions for PACKAGE-NAME and all its + "Return a list of package expressions for PACKAGE-NAME and all its dependencies, sorted in topological order. For each package, call (REPO->GUIX-PACKAGE NAME REPO), which should return a package expression and a list of dependencies; call (GUIX-NAME NAME) to obtain the Guix package |