소스 검색

LibJS/Tests: Fix typo in a test description

Linus Groh 3 년 전
부모
커밋
5ca242ce30
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();