@@ -176,7 +176,7 @@ function generateLocForProperty(key: string, prop: any, keyToLocString: any): vo
176
176
if ( comments . length > 0 ) {
177
177
keyToLocString [ descriptionKey ] = {
178
178
message : prop . description ,
179
- comments : comments ,
179
+ comment : comments ,
180
180
} ;
181
181
} else {
182
182
keyToLocString [ descriptionKey ] = prop . description ;
@@ -192,7 +192,7 @@ function generateLocForProperty(key: string, prop: any, keyToLocString: any): vo
192
192
if ( comments . length > 0 ) {
193
193
keyToLocString [ markdownDescriptionKey ] = {
194
194
message : prop . markdownDescription ,
195
- comments : comments ,
195
+ comment : comments ,
196
196
} ;
197
197
} else {
198
198
keyToLocString [ markdownDescriptionKey ] = prop . markdownDescription ;
@@ -208,7 +208,7 @@ function generateLocForProperty(key: string, prop: any, keyToLocString: any): vo
208
208
if ( comments . length > 0 ) {
209
209
keyToLocString [ settingsDescriptionKey ] = {
210
210
message : prop . settingsDescription ,
211
- comments : comments ,
211
+ comment : comments ,
212
212
} ;
213
213
} else {
214
214
keyToLocString [ settingsDescriptionKey ] = prop . settingsDescription ;
@@ -224,7 +224,7 @@ function generateLocForProperty(key: string, prop: any, keyToLocString: any): vo
224
224
if ( comments . length > 0 ) {
225
225
keyToLocString [ descriptionKey ] = {
226
226
message : prop . deprecationMessage ,
227
- comments : comments ,
227
+ comment : comments ,
228
228
} ;
229
229
} else {
230
230
keyToLocString [ descriptionKey ] = prop . deprecationMessage ;
0 commit comments