From bc64e02bf8fd42cc53e199cc41701f0a3f16fb29 Mon Sep 17 00:00:00 2001 From: kenju Date: Fri, 15 Jun 2018 19:12:21 +0900 Subject: [PATCH] fix issue number of link for #3508 in CHANGELOG (#8175) [skip ci] --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6886e7a825..91fe5adaad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2452,7 +2452,7 @@ Also, thanks to [@mucsi96](https://github.com/mucsi96) for catching the extraneo #### Bug Fix * `babel-core` - * [#3508](https://github.com/babel/babel/pull/3510) Assign `_this` to `this` when there is no `Superclass` in a `Class` when using class properties. Fixes T7364. ([@ehjay](https://github.com/ehjay)) + * [#3508](https://github.com/babel/babel/pull/3508) Assign `_this` to `this` when there is no `Superclass` in a `Class` when using class properties. Fixes T7364. ([@ehjay](https://github.com/ehjay)) The fix correctly set this: `var _this;` -> `var _this = this;`