summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-04-02 09:47:58 +0200
committerLudovic Courtès <ludo@gnu.org>2020-04-02 11:48:24 +0200
commit5c83dd1d64783d4829e42714be41f4c4b0430dbd (patch)
tree8040d60239499a1785bdcf05146dc634eef96232 /guix
parent12d0bd26acec1d7865a5699a1e29445168e1171b (diff)
downloadpatches-5c83dd1d64783d4829e42714be41f4c4b0430dbd.tar
patches-5c83dd1d64783d4829e42714be41f4c4b0430dbd.tar.gz
ui: Clarify "dependencies changed".
Suggested by Leo Famulari <leo@famulari.name>. * guix/ui.scm (show-manifest-transaction): Change to "dependencies or package changed".
Diffstat (limited to 'guix')
-rw-r--r--guix/ui.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm
index 1e24fe5dca..1ccc80a000 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))