From fa53250c366708ea17dab9d0c549719f0609e3fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= <7226587+thufschmitt@users.noreply.github.com> Date: Fri, 21 Jan 2022 09:52:40 +0100 Subject: [PATCH] Improve the description of the `--precise` option Co-authored-by: Eelco Dolstra --- src/nix/why-depends.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}, }); }