Skip to content

Commit 4f04b27

Browse files
Fix quotes for events description (#661)
1 parent 8ebc382 commit 4f04b27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/src/metadata-generator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default class DXComponentMetadataGenerator {
116116
changeEvents.push({
117117
emit: `${optionName}Change`,
118118
type: `EventEmitter<${finalizedType}>`,
119-
description: 'A handler for the ${optionName}Change event.'
119+
description: `A handler for the ${optionName}Change event.`
120120
});
121121

122122
let components = this.generateComplexOptionByType(metadata, option, optionName, []);

0 commit comments

Comments
 (0)