diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2022-01-21 09:52:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 09:52:40 +0100 |
commit | fa53250c366708ea17dab9d0c549719f0609e3fa (patch) | |
tree | a0c662b196ac690dc612eb4f8fd06442c904ba30 /src/nix | |
parent | dd7c2e0695b02639d8fe6c7bc050da14373b9513 (diff) |
Improve the description of the `--precise` option
Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/why-depends.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/why-depends.cc b/src/nix/why-depends.cc index 74377c912..657df30d7 100644 --- a/src/nix/why-depends.cc +++ b/src/nix/why-depends.cc @@ -60,7 +60,7 @@ struct CmdWhyDepends : SourceExprCommand addFlag({ .longName = "precise", - .description = "For each edge of the graph, inspect the parent node to display the exact location in the path that causes the dependency", + .description = "For each edge in the dependency graph, show the files in the parent that cause the dependency.", .handler = {&precise, true}, }); } |