civodul pushed a commit to branch master
in repository guix.
commit 5c83dd1d64783d4829e42714be41f4c4b0430dbd
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Apr 2 09:47:58 2020 +0200
ui: Clarify "dependencies changed".
Suggested by Leo Famulari <[email protected]>.
* guix/ui.scm (show-manifest-transaction): Change to "dependencies or
package changed".
---
guix/ui.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/ui.scm b/guix/ui.scm
index 1e24fe5..1ccc80a 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -1164,7 +1164,7 @@ separator between subsequent columns."
names outputs)
(map (lambda (old new)
(if (string=? old new)
- (G_ "(dependencies changed)")
+ (G_ "(dependencies or package changed)")
(string-append old " " → " " new)))
old-version new-version))
#:initial-indent 3))