From 10e18de9c2367329cc597f6592d4f8bffa783b63 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Sat, 26 Nov 2022 07:49:59 +0100 Subject: [PATCH] Change from "compiling" to "evaluating" This step is already called "evaluation" in the code, and it makes sense that code and output should be consistent. I think "evaluate" is the better term, since future supported languages might not need to be compiled. --- crates/fj-window/src/run.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crates/fj-window/src/run.rs b/crates/fj-window/src/run.rs index cf1dce7133..17a11530a1 100644 --- a/crates/fj-window/src/run.rs +++ b/crates/fj-window/src/run.rs @@ -71,11 +71,13 @@ pub fn run( match event { ModelEvent::ChangeDetected => { status.update_status( - "Change in model detected. Compiling...", + "Change in model detected. Evaluating model...", ); } ModelEvent::Evaluation(evaluation) => { - status.update_status("Model compiled. Processing..."); + status.update_status( + "Model evaluated. Processing model...", + ); match shape_processor.process(&evaluation.shape) { Ok(shape) => {