From 452607d9ad352f43ba3fc02d05beaa4ecd6b5326 Mon Sep 17 00:00:00 2001 From: Setzer22 Date: Tue, 24 May 2022 16:56:56 +0200 Subject: [PATCH] Force run CI --- egui_node_graph_example/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.