Skip to content

Commit

Permalink
Change from "compiling" to "evaluating"
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
hannobraun committed Nov 26, 2022
1 parent 805d1a0 commit 10e18de
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/fj-window/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 10e18de

Please sign in to comment.