From c8f4396677c3132692aad3346f3d46aac0e5bbca Mon Sep 17 00:00:00 2001 From: saixiaoxi <101516994+saixiaoxi@users.noreply.github.com> Date: Thu, 28 May 2026 15:49:50 +0800 Subject: [PATCH] chore: fix typo in n-queens test description --- src/algorithms/uncategorized/n-queens/__test__/nQueens.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/uncategorized/n-queens/__test__/nQueens.test.js b/src/algorithms/uncategorized/n-queens/__test__/nQueens.test.js index 1f01b3aab5..23dd81e8aa 100644 --- a/src/algorithms/uncategorized/n-queens/__test__/nQueens.test.js +++ b/src/algorithms/uncategorized/n-queens/__test__/nQueens.test.js @@ -1,7 +1,7 @@ import nQueens from '../nQueens'; describe('nQueens', () => { - it('should not hae solution for 3 queens', () => { + it('should not have solution for 3 queens', () => { const solutions = nQueens(3); expect(solutions.length).toBe(0); });