summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Daniels <mdaniels5757@gmail.com>2026-01-24 21:36:44 +0000
committerGitHub <noreply@github.com>2026-01-24 21:36:44 +0000
commit006ecdbdeb4b1c7c4cbd8963d64e80be95348436 (patch)
tree80338affcf93c1f2110b8c6b86a16449f0943319 /lib
parentMerge master into staging-nixos (diff)
parenttreewide: fix typos (diff)
downloadnixpkgs-006ecdbdeb4b1c7c4cbd8963d64e80be95348436.tar.gz
treewide: fix typos (#479869)
Diffstat (limited to 'lib')
-rw-r--r--lib/fileset/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/fileset/README.md b/lib/fileset/README.md
index 80e7146992a8..c7ca6615dc97 100644
--- a/lib/fileset/README.md
+++ b/lib/fileset/README.md
@@ -16,7 +16,7 @@ It should have the following properties:
Non-goals are:
- Efficient:
- If the abstraction proves itself worthwhile but too slow, it can be still be optimized further.
+ If the abstraction proves itself worthwhile but too slow, it can still be optimized further.
## Tests
@@ -90,7 +90,7 @@ One of the following:
- `"regular"`, `"symlink"`, `"unknown"` or any other non-`"directory"` string:
A nested file with its file type.
These specific strings are chosen to be compatible with `builtins.readDir` for a simpler implementation.
- Distinguishing between different file types is not strictly necessary for the functionality this library,
+ Distinguishing between different file types is not strictly necessary for the functionality of this library,
but it does allow nicer printing of file sets.
- `null`:
@@ -127,7 +127,7 @@ Arguments:
### Empty file set without a base
There is a special representation for an empty file set without a base path.
-This is used for return values that should be empty but when there's no base path that would makes sense.
+This is used for return values that should be empty but when there's no base path that would make sense.
Arguments:
- Alternative: This could also be represented using `_internalBase = /.` and `_internalTree = null`.