From de1a76413fce425fca48a736cdba997f592c44ad Mon Sep 17 00:00:00 2001 From: Karsten Gohm Date: Mon, 9 Jan 2017 15:02:19 +0100 Subject: [PATCH] Static function call result comment does not match variable content (#5077) static staticProperty, defined in line 18, value is 'babeliscool' but comment on line 33 the given sample output is 'babelIsCool'. this commit fixes this inconsistency --- packages/babel-plugin-transform-class-properties/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-plugin-transform-class-properties/README.md b/packages/babel-plugin-transform-class-properties/README.md index a4c7ea02c0..9dbe559082 100644 --- a/packages/babel-plugin-transform-class-properties/README.md +++ b/packages/babel-plugin-transform-class-properties/README.md @@ -15,7 +15,7 @@ Below is a class with four class properties which will be transformed. } //Static class properties - static staticProperty = "babeliscool"; + static staticProperty = "babelIsCool"; static staticFunction = function() { return Bork.staticProperty; }