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;