diff options
author | aurtzy <aurtzy@gmail.com> | 2024-11-12 01:56:03 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-11-12 23:29:09 +0100 |
commit | ab80403eeab6c2c0c140056ac04dd0d118cdac45 (patch) | |
tree | cc10732e522df5ca86a96006c59405c055b6bdd9 | |
parent | dabbf71aa7a7675af407965d456f2919bac77489 (diff) | |
download | guix-ab80403eeab6c2c0c140056ac04dd0d118cdac45.tar.gz |
doc: Fix `copy-recursively' arguments.
The `select?' keyword is part of the description instead of immediately following `keep-permissions?' in the arguments list for `copy-recursively'. This adds a missing '@' to fix that. * doc/guix.texi (Build Utilities): Fix `copy-recursively' arguments. Change-Id: If6802490a6afebc884b039d84f1fe4f9202a1151 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | doc/guix.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index d2000785c6..2ab78d6237 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -10648,7 +10648,7 @@ Make @var{file} writable for its owner. @deffn {Procedure} copy-recursively source destination @ [#:log (current-output-port)] [#:follow-symlinks? #f] @ - [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] + [#:copy-file copy-file] [#:keep-mtime? #f] [#:keep-permissions? #t] @ [#:select? (const #t)] Copy @var{source} directory to @var{destination}. Follow symlinks if @var{follow-symlinks?} is true; otherwise, just preserve them. Call |