From bd569433c4a3735039a0d64e07fcce051767daa6 Mon Sep 17 00:00:00 2001 From: Vasiliy Shilov Date: Wed, 16 Aug 2017 16:18:39 +0300 Subject: [PATCH] Update README.md: A semicolon is required after a class property. --- packages/babel-plugin-transform-class-properties/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/babel-plugin-transform-class-properties/README.md b/packages/babel-plugin-transform-class-properties/README.md index eac25f59e9..e64082ad91 100644 --- a/packages/babel-plugin-transform-class-properties/README.md +++ b/packages/babel-plugin-transform-class-properties/README.md @@ -12,13 +12,13 @@ Below is a class with four class properties which will be transformed. instanceProperty = "bork"; boundFunction = () => { return this.instanceProperty; - } + }; //Static class properties static staticProperty = "babelIsCool"; static staticFunction = function() { return Bork.staticProperty; - } + }; } let myBork = new Bork;