summaryrefslogtreecommitdiff
path: root/src/err.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/err.rs')
-rw-r--r--src/err.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/err.rs b/src/err.rs
index b928b09..c5210f1 100644
--- a/src/err.rs
+++ b/src/err.rs
@@ -7,16 +7,10 @@ pub enum RoadmapError {
NoGoals,
#[error("too many goals, must have exactly one: found {count:}: {}", .names.join(", "))]
- ManyGoals {
- count: usize,
- names: Vec<String>,
- },
+ ManyGoals { count: usize, names: Vec<String> },
#[error("step {name:} depends on missing {missing:}")]
- MissingDep {
- name: String,
- missing: String,
- },
+ MissingDep { name: String, missing: String },
#[error("step is not a mapping")]
StepNotMapping,