From a2f960abfbd4c966e2239ae647bb192378540b04 Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Sun, 11 Jan 2026 00:34:48 -0500 Subject: [PATCH] silly bug --- web/root/src/simulation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/root/src/simulation.ts b/web/root/src/simulation.ts index c37821b..083885f 100644 --- a/web/root/src/simulation.ts +++ b/web/root/src/simulation.ts @@ -108,7 +108,7 @@ export class FaState { toString(): string { if (!this.repr) { - this.repr = this.state + +" >" + this.input.substring(this.position); + this.repr = this.state + " >" + this.input.substring(this.position); } return this.repr; }