Browse Source

LibJS/Tests: Fix typo in a test description

Linus Groh 3 years ago
parent
commit
5ca242ce30
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibJS/Tests/syntax/destructuring-assignment.js

+ 1 - 1
Userland/Libraries/LibJS/Tests/syntax/destructuring-assignment.js

@@ -47,7 +47,7 @@ describe("parsing", () => {
         expect(`let [ a, [ ...{length} ] ] = [];`).toEval();
     });
 
-    test("function parameters cannot use member expresssions", () => {
+    test("function parameters cannot use member expressions", () => {
         expect("function f([a.b]) {}").not.toEval();
         expect("function f([b[0]]) {}").not.toEval();