Cargo fmt

This commit is contained in:
Setzer22 2022-02-24 20:14:17 +01:00
parent b910bc1f60
commit d3a7ca1c53
3 changed files with 3 additions and 3 deletions

View File

@ -6,5 +6,5 @@ pub enum EguiGraphError {
NoParameterNamed(NodeId, String),
#[error("Parameter {0:?} was not found in the graph.")]
InvalidParameterId(AnyParameterId)
InvalidParameterId(AnyParameterId),
}

View File

@ -88,4 +88,4 @@ pub struct Graph<NodeData, DataType, ValueType> {
// Connects the input of a node, to the output of its predecessor that
// produces it
pub connections: SecondaryMap<InputId, OutputId>,
}
}

View File

@ -12,4 +12,4 @@ impl ColorUtils for egui::Color32 {
self.a(),
)
}
}
}