1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-25 19:51:00 +01:00

consistent capitalization

This commit is contained in:
Ben Burdette 2020-05-13 10:02:18 -06:00
parent bfca5fc395
commit c79d4addab
7 changed files with 10 additions and 10 deletions

View file

@ -24,7 +24,7 @@ static void createLinks(State & state, const Path & srcDir, const Path & dstDir,
if (e.errNo == ENOTDIR) {
logWarning(
ErrorInfo {
.name = "Create Links - Directory",
.name = "Create links - directory",
.hint = hintfmt("not including '%s' in the user environment because it's not a directory", srcDir)
});
return;
@ -47,7 +47,7 @@ static void createLinks(State & state, const Path & srcDir, const Path & dstDir,
if (e.errNo == ENOENT || e.errNo == ENOTDIR) {
logWarning(
ErrorInfo {
.name = "Create Links - Skipping Symlink",
.name = "Create links - skipping symlink",
.hint = hintfmt("skipping dangling symlink '%s'", dstFile)
});
continue;