@@ -265,8 +265,8 @@ export class MessageRouter {
265265 }
266266
267267 /**
268- * This is used when writing the API review file. It looks up any messages that were configured to get emitted
269- * in the API review file and returns them. It also records that they were emitted, which suppresses them from
268+ * This is used when writing the API report file. It looks up any messages that were configured to get emitted
269+ * in the API report file and returns them. It also records that they were emitted, which suppresses them from
270270 * being shown on the console.
271271 */
272272 public fetchAssociatedMessagesForReviewFile ( astDeclaration : AstDeclaration ) : ExtractorMessage [ ] {
@@ -278,11 +278,11 @@ export class MessageRouter {
278278 // Make sure we didn't already report this message for some reason
279279 if ( ! associatedMessage . handled ) {
280280
281- // Is this message type configured to go in the API review file?
281+ // Is this message type configured to go in the API report file?
282282 const reportingRule : IReportingRule = this . _getRuleForMessage ( associatedMessage ) ;
283283 if ( reportingRule . addToApiReportFile ) {
284284
285- // Include it in the result, and record that it went to the API review file
285+ // Include it in the result, and record that it went to the API report file
286286 messagesForApiReportFile . push ( associatedMessage ) ;
287287 associatedMessage . handled = true ;
288288 }
@@ -306,11 +306,11 @@ export class MessageRouter {
306306 // Make sure we didn't already report this message for some reason
307307 if ( ! unassociatedMessage . handled ) {
308308
309- // Is this message type configured to go in the API review file?
309+ // Is this message type configured to go in the API report file?
310310 const reportingRule : IReportingRule = this . _getRuleForMessage ( unassociatedMessage ) ;
311311 if ( reportingRule . addToApiReportFile ) {
312312
313- // Include it in the result, and record that it went to the API review file
313+ // Include it in the result, and record that it went to the API report file
314314 messagesForApiReportFile . push ( unassociatedMessage ) ;
315315 unassociatedMessage . handled = true ;
316316 }
0 commit comments