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

Merge pull request #92 from DeterminateSystems/lucperkins/fh-864-fix-error-messages-to-avoid-fake-future-tense

Fix some instances of 'will'
This commit is contained in:
Luc Perkins 2025-06-11 17:27:24 +00:00 committed by GitHub
commit 27755169f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 141 additions and 142 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).
)"};