diff --git a/egui_node_graph_example/src/app.rs b/egui_node_graph_example/src/app.rs index 6b98b7d..0c760cc 100644 --- a/egui_node_graph_example/src/app.rs +++ b/egui_node_graph_example/src/app.rs @@ -397,7 +397,7 @@ pub fn evaluate_node( outputs_cache: &mut OutputsCache, ) -> anyhow::Result { // To solve a similar problem as creating node types above, we define an - // Evaluator as a convenience. They may be overkill for this small example, + // Evaluator as a convenience. It may be overkill for this small example, // but something like this makes the code much more readable when the // number of nodes starts growing.