Skip to content

Commit

Permalink
add missing colons to input
Browse files Browse the repository at this point in the history
  • Loading branch information
MalteHerrmann committed Jun 14, 2024
1 parent c9fe901 commit 034cbb2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ pub async fn run() -> Result<(), AddError> {
selectable_change_types.sort();

let selected_change_type =
Select::new("Select change type to add into", selectable_change_types).prompt()?;
Select::new("Select change type to add into:", selectable_change_types).prompt()?;

let pr_number = match Text::new("Please provide the PR number")
let pr_number = match Text::new("Please provide the PR number:")
.with_initial_value(
check_for_open_pr(&config).await.unwrap_or("".to_string()).as_str()
)
Expand All @@ -26,11 +26,11 @@ pub async fn run() -> Result<(), AddError> {
};

let cat = Select::new(
"Select the category of the made changes",
"Select the category of the made changes:",
config.categories.clone(),
)
.prompt()?;
let desc = Text::new("Please provide a short description of the made changes\n").prompt()?;
let desc = Text::new("Please provide a short description of the made changes:\n").prompt()?;

let mut changelog = changelog::load(config.clone())?;
add_entry(
Expand Down

0 comments on commit 034cbb2

Please sign in to comment.