diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-07-11 00:53:04 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-11 00:53:04 +0200 |
commit | dc013aff819ad2a95c50f3ba7d66c1297a7b1585 (patch) | |
tree | d61fcfc63ca8ec8af6685072492a129d2eefca11 | |
parent | 78d55b703d155d36520e1c93dc08a6502c56bd55 (diff) | |
download | guix-dc013aff819ad2a95c50f3ba7d66c1297a7b1585.tar guix-dc013aff819ad2a95c50f3ba7d66c1297a7b1585.tar.gz |
ui: Fix typo.
* guix/ui.scm (display-profile-content-diff): Fix typo in docstring.
-rw-r--r-- | guix/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 6a5feaa953..29c0b2b9ce 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -1428,7 +1428,7 @@ DURATION-RELATION with the current time." (format #t "~a~%" header))))) (define (display-profile-content-diff profile gen1 gen2) - "Display the changed packages in PROFILE GEN2 compared to generation GEN2." + "Display the changed packages in PROFILE GEN2 compared to generation GEN1." (define (equal-entry? first second) (string= (manifest-entry-item first) (manifest-entry-item second))) |