Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ enum Commands {

#[derive(Subcommand)]
enum RepoCommand {
/// List repositories the current token can see.
/// List repositories. Needs API_REPOS_READ (or API_REPOS_WRITE or ALL).
List {
#[arg(long)]
json: bool,
Expand All @@ -110,7 +110,7 @@ enum RepoCommand {
#[arg(long)]
json: bool,
},
/// Show one repository.
/// Show one repository. Needs API_REPOS_READ (or API_REPOS_WRITE or ALL).
Get {
/// NAME or owner/NAME.
name: String,
Expand Down
Loading