Skip to content

Commit 49bca2a

Browse files
committed
Make clear what gix commit-graph is (#1572)
1 parent 1cfe577 commit 49bca2a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: src/plumbing/options/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub enum Subcommands {
8383
Archive(archive::Platform),
8484
#[cfg(feature = "gitoxide-core-tools-clean")]
8585
Clean(clean::Command),
86-
/// Subcommands for interacting with commit-graphs
86+
/// Subcommands for interacting with commit-graph files
8787
#[clap(subcommand)]
8888
CommitGraph(commitgraph::Subcommands),
8989
/// Interact with the object database.
@@ -738,13 +738,13 @@ pub mod credential {
738738
pub mod commitgraph {
739739
#[derive(Debug, clap::Subcommand)]
740740
pub enum Subcommands {
741-
/// Verify the integrity of a commit graph
741+
/// Verify the integrity of a commit graph file
742742
Verify {
743-
/// output statistical information about the pack
743+
/// output statistical information about the graph.
744744
#[clap(long, short = 's')]
745745
statistics: bool,
746746
},
747-
/// List all entries in the commit-graph as reachable by starting from `HEAD`.
747+
/// List all entries in the commit-graph file as reachable by starting from `HEAD`.
748748
List {
749749
/// The rev-spec to list reachable commits from.
750750
#[clap(default_value = "@")]

0 commit comments

Comments
 (0)