Merge pull request #12482 from wittydeveloper/fix-generateClassElementDecorationExpression-documentation

doc(compiler/ts): fix documentation typo in generateClassElementDecorationExpression()
This commit is contained in:
Mohamed Hegazy
2016-11-26 14:45:12 -08:00
committed by GitHub

View File

@@ -1353,13 +1353,13 @@ namespace ts {
// __metadata("design:type", Function),
// __metadata("design:paramtypes", [Object]),
// __metadata("design:returntype", void 0)
// ], C.prototype, "method", undefined);
// ], C.prototype, "method", null);
//
// The emit for an accessor is:
//
// __decorate([
// dec
// ], C.prototype, "accessor", undefined);
// ], C.prototype, "accessor", null);
//
// The emit for a property is:
//