From c05a5a7e990e25b982396303f47f3473580dda24 Mon Sep 17 00:00:00 2001 From: Elizabeth Alexander Hunt Date: Wed, 25 Feb 2026 22:34:32 -0800 Subject: Minor string updates --- src/toys/godel/js/ui.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/toys/godel/js/ui.js') diff --git a/src/toys/godel/js/ui.js b/src/toys/godel/js/ui.js index 2952140..97e5209 100644 --- a/src/toys/godel/js/ui.js +++ b/src/toys/godel/js/ui.js @@ -139,17 +139,13 @@ export class GodelPlayground { this.latestSequence = godelSequence; this.setCompiled(js); this.renderSequence(godelSequence); - this.setStatus( - "compile", - `Compiled ${godelSequence.length} instruction${godelSequence.length === 1 ? "" : "s"}.`, - "success" - ); + this.setStatus("compile", "Successful compilation", "success"); this.elements.computeNumberBtn.disabled = godelSequence.length === 0; } catch (error) { this.latestSequence = []; this.renderSequence([]); this.elements.computeNumberBtn.disabled = true; - this.setStatus("compile", error.message || "Failed to compile program", "error"); + this.setStatus("compile", error.message || "Error compiling", "error"); } } -- cgit v1.3