From 5b5ac1f366edff48346e7eb83aac104cee4ad8b9 Mon Sep 17 00:00:00 2001 From: Aaron Abramov Date: Wed, 9 May 2018 12:09:45 -0400 Subject: [PATCH 1/2] fix typo in a comment as title --- .../get-set/call-semantics-setter-defined-on-parent/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/input.js b/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/input.js index 184778853f..9b74ae7319 100644 --- a/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/input.js +++ b/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/input.js @@ -19,6 +19,6 @@ const obj = new Obj(); expect(() => { obj.call(); - // Asser that this throws, but that it's not + // Assert that this throws, but that it's not // a gobbledygook error that is thrown }).toThrowError(TypeError) From d2ed7bbc8df1b94c834f51216a23e9255717d02a Mon Sep 17 00:00:00 2001 From: Sven SAULEAU Date: Wed, 9 May 2018 18:21:14 +0200 Subject: [PATCH 2/2] Update output.js --- .../get-set/call-semantics-setter-defined-on-parent/output.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/output.js b/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/output.js index cadc3fc0b5..face41d9ed 100644 --- a/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/output.js +++ b/packages/babel-plugin-transform-classes/test/fixtures/get-set/call-semantics-setter-defined-on-parent/output.js @@ -65,6 +65,6 @@ function (_Base) { const obj = new Obj(); expect(() => { - obj.call(); // Asser that this throws, but that it's not + obj.call(); // Assert that this throws, but that it's not // a gobbledygook error that is thrown }).toThrowError(TypeError);