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

Merge pull request #107 from DeterminateSystems/fix-typo

Re-supply inadvertently deleted word
This commit is contained in:
Graham Christensen 2025-06-12 16:49:26 +00:00 committed by GitHub
commit b9e876768f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ struct PluginSettings : Config
itself, they must be DSOs compatible with the instance of Nix itself, they must be DSOs compatible with the instance of Nix
running at the time (i.e. compiled against the same headers, not running at the time (i.e. compiled against the same headers, not
linked to any incompatible libraries). They should not be linked to linked to any incompatible libraries). They should not be linked to
any Nix libraries directly, as those are already at load any Nix libraries directly, as those are already available at load
time. time.
If an entry in the list is a directory, all files in the directory If an entry in the list is a directory, all files in the directory

View file

@ -46,7 +46,7 @@ struct FileTransferSettings : Config
)"}; )"};
Setting<unsigned int> tries{this, 5, "download-attempts", Setting<unsigned int> tries{this, 5, "download-attempts",
"The number of times Nix will attempt to download a file before giving up."}; "The number of times Nix attempts to download a file before giving up."};
Setting<size_t> downloadBufferSize{this, 64 * 1024 * 1024, "download-buffer-size", Setting<size_t> downloadBufferSize{this, 64 * 1024 * 1024, "download-buffer-size",
R"( R"(