Fix small typo in configuration documentation (#40357)

* Fix small typo in configuration documentation
* doc: Fix second instance of same typo
This commit is contained in:
Scott Trinh 2018-05-11 15:31:56 -04:00 committed by xeji
parent cd9b1b1665
commit 7c2d43f3f9

View File

@ -378,7 +378,7 @@
myPackages = pkgs.buildEnv { myPackages = pkgs.buildEnv {
name = "my-packages"; name = "my-packages";
paths = [ aspell bc coreutils ffmpeg nixUnstable emscripten jq nox silver-searcher ]; paths = [ aspell bc coreutils ffmpeg nixUnstable emscripten jq nox silver-searcher ];
pathsToLink = [ "/share/man" "/share/doc" /bin" ]; pathsToLink = [ "/share/man" "/share/doc" "/bin" ];
extraOutputsToInstall = [ "man" "doc" ]; extraOutputsToInstall = [ "man" "doc" ];
}; };
}; };
@ -416,7 +416,7 @@ cp ${myProfile} $out/etc/profile.d/my-profile.sh
nox nox
silver-searcher silver-searcher
]; ];
pathsToLink = [ "/share/man" "/share/doc" /bin" "/etc" ]; pathsToLink = [ "/share/man" "/share/doc" "/bin" "/etc" ];
extraOutputsToInstall = [ "man" "doc" ]; extraOutputsToInstall = [ "man" "doc" ];
}; };
}; };