diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-08-25 22:50:14 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-08-28 21:14:18 -0400 |
commit | ba0dbe3bf2ae4e036a6974489d30bd7f1571a13a (patch) | |
tree | 01a60cca3a598517d1441179732685ab7e4aba2c | |
parent | 3294fa2ba451c7d5ef42a5d9fac780877f364bc7 (diff) |
gexp: directory-union: Fix documentation.
* guix/gexp.scm (directory-union): Fix documentation.
-rw-r--r-- | guix/gexp.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/gexp.scm b/guix/gexp.scm index ef92223048..73595a216b 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -2140,8 +2140,8 @@ Call RESOLVE-COLLISION when several files collide, passing it the list of colliding files. RESOLVE-COLLISION must return the chosen file or #f, in which case the colliding entry is skipped altogether. -When HARD-LINKS? is true, create hard links instead of symlinks. When QUIET? -is true, the derivation will not print anything." +When COPY? is true, copy files instead of creating symlinks. When QUIET? is +true, the derivation will not print anything." (define symlink (if copy? (gexp (lambda (old new) |