1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-01 06:31:00 +01:00

Fix some instances of 'will'

This commit is contained in:
Luc Perkins 2025-06-06 10:51:58 -07:00
parent 76b9be3782
commit a989a23d1a
No known key found for this signature in database
GPG key ID: C86EE5D85EE4DDA5
19 changed files with 137 additions and 138 deletions

View file

@ -91,7 +91,7 @@ constexpr std::array<ExperimentalFeatureDetails, numXpFeatures> xpFeatureDetails
.name = "git-hashing",
.description = R"(
Allow creating (content-addressed) store objects which are hashed via Git's hashing algorithm.
These store objects will not be understandable by older versions of Nix.
These store objects aren't understandable by older versions of Nix.
)",
.trackingUrl = "https://github.com/NixOS/nix/milestone/41",
},
@ -154,7 +154,7 @@ constexpr std::array<ExperimentalFeatureDetails, numXpFeatures> xpFeatureDetails
"http://foo"
```
But enabling this experimental feature will cause the Nix parser to
But enabling this experimental feature causes the Nix parser to
throw an error when encountering a URL literal:
```

View file

@ -57,7 +57,7 @@ struct LoggerSettings : Config
Setting<Path> jsonLogPath{
this, "", "json-log-path",
R"(
A path to which JSON records of Nix's log output will be
A path to which JSON records of Nix's log output are
written, in the same format as `--log-format internal-json`
(without the `@nix ` prefixes on each line).
)"};