about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-08-30 00:02:26 +0000
committerGitHub <noreply@github.com>2023-08-30 00:02:26 +0000
commite04d83dad1329f792bd9bebce442d04137eefeb9 (patch)
treeaa48ac9a5b279c6eb3b9f5d273cdaa0c148cdb98 /doc
parentebb1b50facd08e400e0bbadea24e344641173620 (diff)
parentad955db7f9815d0d4474ab9315bc93e74b59a504 (diff)
downloadnixlib-e04d83dad1329f792bd9bebce442d04137eefeb9.tar
nixlib-e04d83dad1329f792bd9bebce442d04137eefeb9.tar.gz
nixlib-e04d83dad1329f792bd9bebce442d04137eefeb9.tar.bz2
nixlib-e04d83dad1329f792bd9bebce442d04137eefeb9.tar.lz
nixlib-e04d83dad1329f792bd9bebce442d04137eefeb9.tar.xz
nixlib-e04d83dad1329f792bd9bebce442d04137eefeb9.tar.zst
nixlib-e04d83dad1329f792bd9bebce442d04137eefeb9.zip
Merge staging-next into staging
Diffstat (limited to 'doc')
-rw-r--r--doc/stdenv/stdenv.chapter.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/stdenv/stdenv.chapter.md b/doc/stdenv/stdenv.chapter.md
index 56843467fa4a..fe0f5daf7a07 100644
--- a/doc/stdenv/stdenv.chapter.md
+++ b/doc/stdenv/stdenv.chapter.md
@@ -1179,7 +1179,7 @@ someVar=$(stripHash $name)
 
 ### `wrapProgram` \<executable\> \<makeWrapperArgs\> {#fun-wrapProgram}
 
-Convenience function for `makeWrapper` that replaces `<\executable\>` with a wrapper that executes the original program. It takes all the same arguments as `makeWrapper`, except for `--inherit-argv0` (used by the `makeBinaryWrapper` implementation) and `--argv0` (used by both `makeWrapper` and `makeBinaryWrapper` wrapper implementations).
+Convenience function for `makeWrapper` that replaces `<executable>` with a wrapper that executes the original program. It takes all the same arguments as `makeWrapper`, except for `--inherit-argv0` (used by the `makeBinaryWrapper` implementation) and `--argv0` (used by both `makeWrapper` and `makeBinaryWrapper` wrapper implementations).
 
 If you will apply it multiple times, it will overwrite the wrapper file and you will end up with double wrapping, which should be avoided.