1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-04 23:51:47 +02:00

Merge pull request #12110 from knotapun/patch-1

Make `readFileType` doc string consistent
This commit is contained in:
mergify[bot] 2024-12-28 12:35:39 +00:00 committed by GitHub
commit 8a3fc27f1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2045,7 +2045,7 @@ static RegisterPrimOp primop_readFileType({
.args = {"p"}, .args = {"p"},
.doc = R"( .doc = R"(
Determine the directory entry type of a filesystem node, being Determine the directory entry type of a filesystem node, being
one of "directory", "regular", "symlink", or "unknown". one of `"directory"`, `"regular"`, `"symlink"`, or `"unknown"`.
)", )",
.fun = prim_readFileType, .fun = prim_readFileType,
}); });