Skip to content

Commit b9e8767

Browse files
authored
Merge pull request #107 from DeterminateSystems/fix-typo
Re-supply inadvertently deleted word
2 parents 46c1a71 + b8e8214 commit b9e8767

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libmain/plugin.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ struct PluginSettings : Config
6060
itself, they must be DSOs compatible with the instance of Nix
6161
running at the time (i.e. compiled against the same headers, not
6262
linked to any incompatible libraries). They should not be linked to
63-
any Nix libraries directly, as those are already at load
63+
any Nix libraries directly, as those are already available at load
6464
time.
6565
6666
If an entry in the list is a directory, all files in the directory

src/libstore/include/nix/store/filetransfer.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct FileTransferSettings : Config
4646
)"};
4747

4848
Setting<unsigned int> tries{this, 5, "download-attempts",
49-
"The number of times Nix will attempt to download a file before giving up."};
49+
"The number of times Nix attempts to download a file before giving up."};
5050

5151
Setting<size_t> downloadBufferSize{this, 64 * 1024 * 1024, "download-buffer-size",
5252
R"(

0 commit comments

Comments
 (0)