diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-01-22 21:31:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-01-28 15:07:52 +0100 |
commit | 09ab0d42b00d38abb57dd8218062e797d5117080 (patch) | |
tree | ea33a76c7dd237512487aebd2c600b3fa2147894 | |
parent | b9650f7faafc7d691248692d18d99fa54cce5c76 (diff) | |
download | guix-09ab0d42b00d38abb57dd8218062e797d5117080.tar guix-09ab0d42b00d38abb57dd8218062e797d5117080.tar.gz |
guix: Fix typo.
* guix/inferior.scm (inferior-available-packages): Remove extra word in
docstring.
-rw-r--r-- | guix/inferior.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/inferior.scm b/guix/inferior.scm index b8c7f5a334..65d7888669 100644 --- a/guix/inferior.scm +++ b/guix/inferior.scm @@ -311,8 +311,7 @@ Raise '&inferior-exception' when an exception is read from PORT." "Return the list of name/version pairs corresponding to the set of packages available in INFERIOR. -This is faster and requires less resource-intensive than calling -'inferior-packages'." +This is faster and less resource-intensive than calling 'inferior-packages'." (if (inferior-eval '(defined? 'fold-available-packages) inferior) (inferior-eval '(fold-available-packages |