Skip to content

Commit

Permalink
feat: #10 ✨ Put task name in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ddanier committed Apr 25, 2024
1 parent ee1cb2b commit f9bc609
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ pub enum NurError {
#[diagnostic()]
ParseErrors(#[related] Vec<ParseError>),

#[error("Invalid task name {0}")]
#[error("Invalid task name '{0}'")]
#[diagnostic()]
InvalidTaskName(String),

#[error("Could not find the task {0}")]
#[error("Could not find the task '{0}'")]
#[diagnostic()]
TaskNotFound(String),

Expand Down

0 comments on commit f9bc609

Please sign in to comment.