diff options
author | Linus Heckemann <git@sphalerite.org> | 2023-03-14 12:02:03 +0100 |
---|---|---|
committer | Linus Heckemann <git@sphalerite.org> | 2023-03-14 12:02:03 +0100 |
commit | 3a1de4c3fe176256514455e1ca951bf28f53bd71 (patch) | |
tree | 95edec623b829dffbe9b3eca141430ae9eeab38b /src/libcmd | |
parent | e91596eb6922157aaba17a858dc52244dd0e5688 (diff) |
Apply review suggestions
Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
Diffstat (limited to 'src/libcmd')
-rw-r--r-- | src/libcmd/installables.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcmd/installables.cc b/src/libcmd/installables.cc index ce42e7770..c2fda7c19 100644 --- a/src/libcmd/installables.cc +++ b/src/libcmd/installables.cc @@ -104,7 +104,7 @@ MixFlakeOptions::MixFlakeOptions() addFlag({ .longName = "reference-lock-file", - .description = "Read the given lock file instead of `flake.lock` within the top-level flake", + .description = "Read the given lock file instead of `flake.lock` within the top-level flake.", .category = category, .labels = {"flake-lock-path"}, .handler = {[&](std::string lockFilePath) { @@ -115,7 +115,7 @@ MixFlakeOptions::MixFlakeOptions() addFlag({ .longName = "output-lock-file", - .description = "Write the given lock file instead of `flake.lock` within the top-level flake", + .description = "Write the given lock file instead of `flake.lock` within the top-level flake.", .category = category, .labels = {"flake-lock-path"}, .handler = {[&](std::string lockFilePath) { |