Skip to content

Commit 67bb98f

Browse files
Fix typos and add better description for --path
1 parent 6415074 commit 67bb98f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/vv/CLI/Commands/BaseSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace vv.CLI.Settings;
55
internal class BaseSettings : CommandSettings
66
{
77
[CommandOption("--path")]
8-
[Description("Path to repository")]
8+
[Description("Path to repository. Use when you don't need to use selection prompt")]
99
public string RepoPath { get; init; }
1010

1111
[CommandOption("--disrespect-gitignore")]

src/vv/CLI/Commands/Setup/SetupCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ protected override async Task<int> ExecuteImpl(SetupSettings settings, Cancellat
1212
{
1313
var installed = await Tokei.CheckIfTokeiInstalled();
1414
if (installed)
15-
AnsiConsole.MarkupLine("[green]Every required dependencies are installed![/]");
15+
AnsiConsole.MarkupLine("[green]Every required dependencies are satisfied![/]");
1616
else
1717
WriteError("Install tokei and add it to PATH");
1818
}

src/vv/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@
1515
.WithExample("setup");
1616

1717
config.AddCommand<FsCommand>("fs")
18-
.WithDescription("Display basic repository filesystem info such as files count, files size, etc.")
18+
.WithDescription("Display basic repository filesystem info such as dirs/files count, files size, etc.")
1919
.WithExample("fs")
2020
.WithExample("fs", "--path", "path/to/repository");
2121

2222
config.AddCommand<LanguagesCommand>("langs")
23-
.WithDescription("Display detailed repository languages statistics")
23+
.WithDescription("Display detailed repository languages statistic")
2424
.WithExample("langs")
2525
.WithExample("langs", "--path", "path/to/repository")
2626
.WithExample("langs", "--ignore-extra-langs")
2727
.WithExample("langs", "--fetch-latest");
2828

2929
config.AddCommand<TreeCommand>("tree")
30-
.WithDescription("Shows repository filesystem tree")
30+
.WithDescription("Show repository filesystem tree")
3131
.WithExample("tree")
3232
.WithExample("tree", "--path", "path/to/repository");
3333

3434
config.AddCommand<GitCommand>("git")
35-
.WithDescription("Shows repository git info")
35+
.WithDescription("Show repository git info")
3636
.WithExample("git")
3737
.WithExample("git", "--path", "path/to/repository")
3838
.WithExample("git", "--branch", "branchname");

0 commit comments

Comments
 (0)