#1262. Roll failures fixed
diff --git a/LanguageFeatures/Spread-collections/TypeInference_A02_t02.dart b/LanguageFeatures/Spread-collections/TypeInference_A02_t02.dart
index a6e3566..ee98d36 100644
--- a/LanguageFeatures/Spread-collections/TypeInference_A02_t02.dart
+++ b/LanguageFeatures/Spread-collections/TypeInference_A02_t02.dart
@@ -136,7 +136,7 @@
 //                                                             ^^^^
 // [analyzer] STATIC_WARNING.INVALID_NULL_AWARE_OPERATOR
 //                                                                 ^
-// [cfe] Operand of null-aware operation '...?' has type 'List<C>' which excludes null
+// [cfe] Operand of null-aware operation '...?' has type 'List<C>' which excludes null.
   Expect.isTrue({b, ...c_list, ...b_list, b} is Set<B>);
   Expect.runtimeIsType<Set<B>>({b, ...c_list, ...b_list, b});