From f155371c1e40eb36f33af543c72ce344d3d23266 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Sun, 8 Mar 2026 09:22:54 +0100 Subject: [PATCH] Fix typo --- packages/cursorless-engine/src/core/UndoStack.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cursorless-engine/src/core/UndoStack.test.ts b/packages/cursorless-engine/src/core/UndoStack.test.ts index c6a57a8105..c7fa2af603 100644 --- a/packages/cursorless-engine/src/core/UndoStack.test.ts +++ b/packages/cursorless-engine/src/core/UndoStack.test.ts @@ -27,7 +27,7 @@ suite("UndoStack", () => { assert.strictEqual(undoStack.redo(), undefined); }); - test("should truncate history if max lenght exceeded", () => { + test("should truncate history if max length exceeded", () => { const undoStack = new UndoStack(3); undoStack.push("a"); undoStack.push("b");